-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingup.html
45 lines (27 loc) · 1004 Bytes
/
singup.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
<!DOCTYPE html>
<html>
<head>
<title> singup</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<bod>
<header>
<h1>sing up Page</h1>
<ul>
<li><a href="#">login</a></li>
<li><a href="#">singup</a></li>
</ul>
</header>
<main>
<form action="#" method="POST">
<input type="text" placeholder="full name" name="name" id="name_input" required>
<input type="email" placeholder="[email protected]" name="email" id="email_input" required>
<input type="tel" placeholder="07-xxxxxxxx" name="tel" id="tel_input" required>
<input type="submit" id="subBtn">
</form>
</main>
<footer>
<p> all rights received 2020</p>
</footer>
</bod>
</html>