-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (77 loc) · 2.83 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
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tiro</title>
<!-- 公共样式 -->
<link rel="stylesheet" href="./css/public.css">
<link rel="stylesheet" href="./css/header.css">
<!-- iconfant -->
<link rel="stylesheet" href="//at.alicdn.com/t/c/font_3557929_mgymoi5bysg.css">
<!-- 主样式 -->
<link rel="stylesheet" href="./css/contact.css">
<!-- map -->
<script src="https://api.map.baidu.com/api?v=2.0&ak=p9g5Rv3nhSSIcKzQj3Y3bhc0xG73qGMU"></script>
</head>
<body>
<!-- 导航栏 -->
<header id="top-header"></header>
<!-- -->
<h2 class="section-title">联系我</h2>
<p id="introduce">如有需要请联系我 — 一个沉溺于网页中的前端工程师</p>
<!-- map -->
<div id="map"></div>
<section>
<div class="container">
<div class="contact flex">
<div id="contact-way" class="flex">
<div class="icon"><i class="iconfont icon-weizhi"></i></div>
<div>
<p>地址</p>
<span>黑龙江省哈尔滨市南岗区学府三道街</span>
</div>
</div>
<div id="contact-way" class="flex">
<div class="icon"><i class="iconfont icon-youxiang-copy"></i></div>
<div>
<p>邮箱</p>
<span>[email protected]</span>
</div>
</div>
<div id="contact-way" class="flex">
<div class="icon"><i class="iconfont icon-24gf-telephone"></i></div>
<div>
<p>Call</p>
<span>18904818692</span>
</div>
</div>
</div>
</div>
<!-- 留言板 -->
<div id="comment-form" class="container">
<p class="flex wrap info">
<input type="text" id="nickname" placeholder="您的姓名">
<input type="text" id="email" placeholder="您的邮箱">
</p>
<p>
<input type="text" id="theme" placeholder="主题">
</p>
<p>
<textarea placeholder="内容" id="message-content" cols="100" rows="10"></textarea>
</p>
<p>
<button id="btn-post" class="btn c-blue">发送</button>
</p>
</div>
</section>
<!-- footer -->
<footer>© Copyright tiro. All Rights Reserved </footer>
<!-- End Footer -->
</body>
<!-- 导航栏文件 -->
<script src="./JS/header.js"></script>
<!-- 主文件 -->
<script src="./JS/contact.js"></script>
</html>