-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1008 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel= "stylesheet" href="style.css" />
</head>
<body>
<script src="script.js"> </script>
<header>
<div class="container">
<h1 ><a class="title" href="index.html"> Post Book</a></h1>
<nav>
<ul>
<li><a class="active" href="#">HOME</a></li>
<li><a href="Notes.html">NOTES</a></li>
<li><a href="About.html">ABOUT</a></li>
</ul>
</nav>
<a class="button" href="">LOGIN</a>
</div>
</header>
<section class="content-container">
<div id="Register-form">
<h1 id="register-heading"> Register </h1>
<form>
<ul>
<li><input type="text" name="username" placeholder="Enter Username"></li>
<li><input type="email" name="email" placeholder="Enter Email"></li>
<li><input type="password" name="password" placeholder="Enter Password"></li>
<li><input type="password" name="confirm" placeholder="Confirm Password"></li>
</ul>
<input class="button" type="submit" value="Sign Up">
</form>
</div>
</section>
</body>
</html>