-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit.html
50 lines (49 loc) · 1.81 KB
/
edit.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
<!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="form_container">
<form>
<h2 class="form_title">Your Announcement</h2>
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject">
<label for="title">Title</label>
<input type="text" id="title" name="title">
<label for="content">Content</label>
<textarea name="content" cols="40" rows="10" required="" id="id_content" style="height: 101px;"></textarea>
<label for="content">Access</label>
<select name="access" id="id_access">
<option value="public" selected="">Public</option>
<option value="local">Local</option>
</select>
<input type="submit" value="Edit">
</form>
</div>
</div>
</main>
</body>
</html>