-
Notifications
You must be signed in to change notification settings - Fork 0
/
signUp.html
37 lines (36 loc) · 1.45 KB
/
signUp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="signUp.css">
<title>Sign Up</title>
</head>
<body>
<header>
<h2>Unix</h2>
<ul>
<li><a href="./index.html">HOME</a></li>
<li><a href="./games.html">GAMES</a></li>
<li><a href="./signUp.html">SIGN UP</a></li>
<li><a href="./contact.html">CONTACT</a></li>
</ul>
</header>
<div class="form">
<form>
<h1>Sign Up</h1>
<input type="text" name="" placeholder="Username">
<input type="text" name="" list="Annette" placeholder="Age">
<input type="email" name="" placeholder="Email">
<input type="password" name="" placeholder="Password">
<input type="password" name="" placeholder="Confirm Password">
<button type="submit">signUp</button>
</form>
</div>
</body>
</html>