-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (52 loc) · 2.25 KB
/
index.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>
Car Model A
</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="nonquizcss.css">
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Kanit" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
</head>
<body>
<div class="hero">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h1>Car Model A</h1>
</div>
</div>
<div class="row">
<div class="col-4">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</div>
</div>
<div class=buttons>
<div class="row justify-content-center">
<div class="col-xl-2 col-lg-4 col-5">
<div>
<a href="index.html">
<button class="buyButton">
<p>
Buy
</p>
</button>
</a>
</div>
</div>
<div class="col-xl-2 col-lg-4 col-6">
<div>
<a href="index.html">
<p class="learnMore">Learn More >>></p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>