-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
67 lines (66 loc) · 2.22 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
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
<!DOCTYPE html>
<html>
<head>
<title>SDG Organization | SignUp</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<nav class="navbar">
<label class="logo"><a href="index.html">SDG Organization</label>
<ul>
<li><a href="index.html" class="button">Home</a></li>
<li><a href="contact.html" class="button">Contact</a></li>
<li><a href="signup.html" class="button">Sign Up</a></li>
</ul>
</nav>
<br>
<br>
<br>
<section class="main-body">
<section class="signup">
<div class ="about">
<h1>Sign Up</h1>
<br>
<br>
<form>
<label>Name</label>
<br>
<br>
<input name="name" type="text" class="form">
<br>
<br>
<br>
<label>Email</label>
<br>
<br>
<input name="name" type="email" class="form">
<br>
<br>
<br>
<label>Recieve updates on:</label>
<br>
<br>
<select class="form1">
<option>Lorem Ispum</option>
<option>Lorem Ispum</option>
<option>Lorem Ispum</option>
<option>Lorem Ispum</option>
<option>Lorem Ispum</option>
</select>
<br>
<br>
<br>
<input type="submit" class="form1" name="submit" value="Submit">
</form>
<br>
<br>
</div>
</section>
</section>
<div style="margin-top: 200px;"></div>
<footer>
<p>Copyright Showaiz Noor Ahmad 2023</p>
</footer>
</body>
</html>