-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
59 lines (41 loc) · 1.7 KB
/
contact.html
File metadata and controls
59 lines (41 loc) · 1.7 KB
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
<html>
<head><link href="style.css" rel="stylesheet" type="text/css">
</head>
<nav class="navbar">
<ul>
<li><a href="C:\Users\Dennis\OneDrive\文档\suon\3u\ics 3u\css web assignment( Dennis Lyu)\CSS Web Assignment(Dennis LYU).html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<h1 class="contact">email:kkaa00771@gmail.com</h1>
<h1 class='contact'>wechat:DLy_43</h1>
<form action='abc.php'>
<label for='fname'>First Name:</label>
<input type='text' name='fname'><br>
<label for='lname'>Last Name:</label>
<input type='text' name='lname'><br>
<label for='gender'>Gender:</label>
<select name='gender'><!--dropdown menu-->
<option name='gender' value='male'>Male</option>
<option name='gender' value='female'>Female</option>
<option name='gender' value='other'>Other</option>
</select><br>
<label for='grade'>Grade:</label>
<input type='radio' name='grade' value='9'>
<label for='grade'>9</label>
<input type='radio' name='grade' value='10'>
<label for='grade'>10</label>
<input type='radio' name='grade' value='11'>
<label for='grade'>11</label>
<input type='radio' name='grade' value='12'>
<label for='grade'>12</label><br>
<label for='dob'>Date of Birth:</label>
<input type='date' name='dob'><br>
<label for='email'>Email:</label>
<input type='email' name='email'><br>
<input type='submit'>
</form>
</body>
</html>