-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (48 loc) · 1.68 KB
/
index.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
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anouncement</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header">
<div class="heading">
<h3> THE TOPIC </h3>
</div>
<div class="logo">
<img src="lo.png" alt="logo">
</div>
</div>
<div id="nav">
<ul>
<li><a href="index.html" class="active">HOME</a> </li>
<li><a href="#">PLAY</a> </li>
<li><a href="#">SLEEP</a> </li>
<li><a href="#">REPEAT</a> </li>
</ul>
</div>
<div class="sidebar">
<form method="POST" action="#">
<h3> Register </h3>
<input type="text" name="fname" placeholder="First name"><br>
<input type="text" name="lname" placeholder="Last name"><br>
<input type="email" name="email" placeholder="Email"><br>
<input type="password" name="password" placeholder="Password"><br>
<input type="datetime-local" name="date" placeholder="Date Of Birth"><br>
<button type="submit" name="submit" value="submit">Register</button>
</form>
</div>
</div>
<div class="main">
</div>
<div id="footer">
<ul>
<li><a href="#">About</a> </li>
<li><a href="#">Help</a> </li>
<li><a href="#">History</a> </li>
</ul>
</div>
</body>
</html>