This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
76 lines (76 loc) · 3.93 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
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
<head>
<meta charset="UTF-8">
<title>联系我们</title>
</head>
<body>
<section class="contacts">
<h2 id="title8">联系我们</h2>
<p class="details">
叮叮书店成立于1980年6月,是由教育部主管、清华大学主办的综合出版单位。
植根于“清华”这座久负盛名的高等学府,秉承清华人“自强不息、厚德载物”的人文精神。
</p>
<fieldset class="contact-form">
<legend class="form-subtitle">需要填写以下内容</legend>
<form action="" method="get" id="contact">
<div class="form-row">
<label class="contact">
<strong>姓名:</strong>
<input type="text" name="name" id="name" required="required" placeholder="必填" autofocus="autofocus" class="contact-input">
</label>
</div>
<div class="form-row">
<label class="contact">
<strong>性别:</strong>
</label>
<label>
<input name="sex" type="radio" id="sex1" value="男" checked="checked">男
</label>
<label>
<input name="sex" type="radio" id="sex2" value="女">女
</label>
</div>
<div class="form-row">
<label class="contact"><strong>年龄范围:</strong>
<select name="age" size="1" id="age">
<option value="1">“18岁以下”</option>
<option value="2" selected="selected">18-28岁</option>
<option value="3">28-38岁</option>
<option value="4">38-48岁</option>
<option value="5">48岁以上</option>
</select>
</label>
</div>
<div class="form-row">
<label class="contact"><strong>爱好:</strong></label>
<label><input type="checkbox" name="interest" value="网络" id="interest1">网络</label>
<label><input type="checkbox" name="interest" value="数据库" id="interest2">数据库</label>
<label><input type="checkbox" name="interest" value="编程" id="interest3">编程</label>
</div>
<div class="form-row">
<label class="contact"><strong>电子邮件:</strong>
<input type="email" name="dayj" id="dzyj" required="required" placeholder="必填" class="contact-input">
</label>
</div>
<div class="form-row">
<label class="contact"><strong>固定电话:</strong>
<input type="text" name="telephone" id="telephone" required="required" pattern="(\d{3,4}-\d{7,8})$" placeholder="必填" class="contact-input">
</label>
</div>
<div class="form-row">
<label class="contact"><strong>公司:</strong>
<input type="text" name="company" id="company" required="required" placeholder="必填" class="contact-input">
</label>
</div>
<div class="form-row">
<label class="contact"><strong>内容:</strong>
<input type="content" name="content" id="content" cols="20" rows="3" class="contact-input">
</label>
</div>
<div class="form-row-button">
<input type="reset" value="取消" class="send">
<input type="submit" value="发送" class="send">
</div>
</form>
</fieldset>
</section>
</body>