-
Notifications
You must be signed in to change notification settings - Fork 0
/
view_details_job.html
64 lines (63 loc) · 2.09 KB
/
view_details_job.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style_4.css">
<link rel="stylesheet" href="style_5.css">
<title>Document</title>
</head>
<body>
<header>
<div class="top-menu">
<h1 class="title">Announcements Web</h1>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Public List</a></li>
<li><a href="">Local List</a></li>
<li><a href="">User List</a></li>
<li><a href="">Create</a></li>
</ul>
<ul class="access">
<li><a href="">Log Out</a></li>
</ul>
</div>
</header>
<main>
<div class="block"></div>
<div class="wrapper">
<div class="root_card">
<form>
<h2 class="form_title2">Announcement Details</h2>
<ul>
<li>
<strong>Title:</strong>
<p>Job Opportunity</p>
</li>
<li>
<strong>Content:</strong>
<p>Frontend Developer Needed</p>
</li>
<li>
<strong>Access:</strong>
<p>Public</p>
</li>
<li>
<strong>Location:</strong>
<p>London</p>
</li>
<li>
<strong>Created by:</strong>
<p>SoftServe</p>
</li>
<li>
<strong>Created at:</strong>
<p>06.01.2024, 14:00 p.m.</p>
</li>
</ul>
</form>
</div>
</div>
</main>
</body>
</html>