-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (93 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup</title>
<link rel="icon" href="images/Icon2.png">
<link rel="stylesheet" href="fontawesome/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media.css">
</head>
<body>
<!--header section-->
<header>
<div class="container flex align-center">
<!--logo section-->
<div class="logo">
<a href="#">
<img src="images/Icon2.png" alt="logo">
</a>
</div>
<!--logo section-->
<!--nav section-->
<nav>
<ul class="flex">
<li>
<a href="about.html">About</a>
<a href="login.html">Login</a>
</li>
</ul>
</nav>
<!--nav section-->
</div>
</header>
<!--header section-->
<!--signup section-->
<section class="signup-section">
<div class="container flex justify-center">
<div class="signup">
<form>
<label for="name">Full Name</label>
<input id="name" type="text">
<label for="email">Email</label>
<input id="email" type="email">
<strong>Select Your Gender</strong>
<label for="male">Male</label>
<input id="male" type="radio" name="gender">
<label for="female">Female</label>
<input id="female" type="radio" name="gender">
<label for="other">other</label>
<input id="other" type="radio" name="gender">
<strong>Select Skils</strong>
<label for="wd">Web Developing</label>
<input id="wd" type="checkbox" name="skill">
<label for="wp">Wordpress</label>
<input id="wp" type="checkbox" name="skill">
<label for="theme">Theming</label>
<input id="theme" type="checkbox" name="skill">
<strong>Message</strong>
<textarea rows="3"></textarea>
<input type="submit" name="" value="Signup now" >
<strong>I've an acount</strong>
<a href="login.html">Login your account</a>
</form>
</div>
</div>
</section>
<!--signup section-->
<!--footer-->
<footer>
<div class="container flex">
<div class="foot">
<ul class="footer-menu-flex">
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Privacy</a></li>
</ul>
</div>
<div class="foot">
<ul class="social-link flex">
<li><span>Follow</span></li>
<li><a href="#"></a><i class="fab fa-facebook-square"></i></li>
<li><a href="#"></a><i class="fab fa-instagram"></i></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
</ul>
</div>
</div>
<div class="container copyRight">
<strong>copyright © imtiazmisha-2021</strong>
</div>
</footer>
<!--footer-->
</body>
</html>