-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
47 lines (43 loc) · 1.21 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
</head>
<body>
<h1>My contact details</h1>
<p>Phon number: 38436136434</p>
<p>Email address: qwe123@virtual.com</p>
<p>Adrress: Earth</p>
<hr size="2" noshade="">
<form action="" method="get" class="form-example">
<div>
<label for="">Your Name:</label>
<input type="text">
</div>
<br>
<div>
<label for="">Email:</label>
<input type="Email">
</div>
<br>
<div>
<label for="">Password</label>
<input type="Password">
</div>
<br>
<div>
<label for="">Why do you want to join us?</label>
<textarea name="" id="" cols="85" rows="5"></textarea>
</div>
<br>
<div>
<label for="">Do you agree with our terms and conditions?</label><br>
<input type="Checkbox">
</div>
<br>
<label for=""></label>
<div><input type="Submit"></div>
</body>
</html>