This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarInfo.html
41 lines (41 loc) · 1.7 KB
/
carInfo.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
<!-- 前台汽车详情 -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>车辆详情</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="./css/carInfo.css">
</head>
<body>
<div class="top2">
<div class="top_return">
<a href="./index.html"><span class="glyphicon glyphicon-arrow-left"></span></a>
</div>
<div class="top_name">
车辆详情
</div>
</div>
<div class="contain">
<div class="car_item col-lg-3 col-md-4 col-sm-6 col-xs-12" id="carInfo">
</div>
</div>
<div class="footer">
<div class="row">
<div class="col-xs-9 col-sm-9 col-md-9 col-lg-9 footer_intro">
<div class="footer_intro_title">青铜峡二手车</div>
<div class="footer_intro_address">公司地址:永丰北路华福御景西门328号</div>
<div class="footer_intro_phone">联系方式:13995034107</div>
</div>
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3 footer_erweima">
<img src="./images/4.jpg">
</div>
</div>
</div>
<script type="text/javascript" src="./script/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="./bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="./script/carInfo.js"></script>
</body>
</html>