-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
57 lines (48 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>首页</title>
<link rel="stylesheet" href="css/common.css"/>
<link rel="stylesheet" href="css/mycss.css"/>
</head>
<body>
<!--header-->
<div class="header_box"></div>
<!--面包屑导航-->
<div class="breadcrumb">
<div class="container">
<h2>
<a href="">首页</a>><a href="">产品中心</a>
</h2>
</div>
</div>
<!--页面主体-->
<div class="main container">
<div class="contect">
<h2></h2>
<h3>
全国服务电话:4000-585-116(电商经销) 4008-508-581(线下代理) 周一至周日9:00-18:00(仅收市话费)<br>
金牌售后客服:15601141120
</h3>
<h4>净美仕环境科技有限公司</h4>
<p>地 址:北京市朝阳区红军营南路15号瑞普大厦C座1102<br>
邮 箱:[email protected]<br>
电 话:86-10-57422471</p>
</div>
</div>
<!--footer-->
<footer class="footer"></footer>
<script src="js/jquery-1.11.3.js"></script>
<script src="js/main.js"></script>
<script>
$(function(){
//加载页面头部
$(".header_box").load('header.html',function(){
main();
navText("联系我们");
});
});
</script>
</body>
</html>