-
Notifications
You must be signed in to change notification settings - Fork 0
/
b.html
executable file
·113 lines (103 loc) · 4.19 KB
/
b.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="bootstrap4/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="bootstrap4/font/fontawesome/web-fonts-with-css/css/fontawesome-all.min.css">
<style type="text/css">
nav{background-color: rgba(0,0,0,0.7);}
main{margin-top: 85px}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark navbar-custom fixed-top">
<div class="container">
<a class="navbar-brand" href="#" style="font-size: 35px">Cars99</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">Sign Up</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Log In</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="text-center" style="font-size: 35px">
<b>Car Details</b>
</div>
<div class="row">
<div class="col-md-6" style="border-style: dotted;">
<img src="images/cars/alfat.jpg" class="img-fluid">
</div>
<div class="col-md-6" style="padding:20px;">
<span style="font-size: 30px;"><b>Alfa Romeo 5 Stelvio Guadrifoglio</b></span><br>
<span><b>$68,000</b></span><br>
The Giulia proved Alfa proved the firm can make superb high-performance cars, and the Stelvio Quadrifoglio looks like another hit.
It gets the same 503bhp 2.9-litre bi-turbo V6 and eight-speed auto as the flagship saloon, and they’re every bit as effective here. The Stelvio is an incredibly fast and secure performance SUV – and a worthy rival for the Porsche Macan Turbo.
</div>
</div>
</div>
</main>
<footer>
<div class="container-fluid text-muted mt-5" style="background-color: #343a40;">
<div class="row" style="padding: 50px">
<div class="col-md-3" style="">
<div style="padding: 5px">
<span class="input-group">
<input type="text" name="">
<span class="input-group-addon">
<i class="fa fa-mobile"></i>
</span>
</span>
</div>
<div style="padding: 5px">
<span class="input-group">
<input type="text" name="">
<span class="input-group-addon">
<i class="fa fa-mobile"></i>
</span>
</span>
</div>
</div>
<div class="col-md-3">
<div style="font-size: 16px;padding-bottom: 5px"><b>About</b></div>
<div style="font-size: 13px;">Cars99</div>
<div style="font-size: 13px;">Terms of Use</div>
<div style="font-size: 13px;">Privacy Policy</div>
<div style="font-size: 13px;">Business License</div>
</div>
<div class="col-md-3">
<div style="font-size: 16px;padding-bottom: 5px"><b>Other Services</b></div>
<div style="font-size: 13px;">Timing</div>
<div style="font-size: 13px;">Operation</div>
</div>
<div class="col-md-3">
<div style="font-size: 16px;padding-bottom: 5px"><b>Contact Us</b></div>
<div style="font-size: 13px;">Website Feedback</div>
<div style="font-size: 13px;">Customer Support</div>
</div>
<footer style="font-size: 12px;margin-left: 350px;padding: 10px">Copyright©.All Right Reserved</footer>
</div>
</div>
</footer>
<script type="text/javascript" src="bootstrap4/js/popper.js"></script>
<script type="text/javascript" src="bootstrap4/js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="bootstrap4/js/bootstrap.min.js"></script>
<script type="text/javascript" src="AngularJS/angular.js"></script>
<script type="text/javascript" src="bootstrap4/angular-route/angular-route.min.js"></script>
<script type="text/javascript" src="bower-angular-route-master/angular-route.js"></script>
<script type="text/javascript" src="bower-angular-route-master/angular.min.js"></script>
</body>
</html>