-
Notifications
You must be signed in to change notification settings - Fork 0
/
cars.html
54 lines (51 loc) · 2 KB
/
cars.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">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- My CSS -->
<link rel="stylesheet" href="headstyle.css">
<link rel="stylesheet" href="pictureGallery.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap" rel="stylesheet">
<title>Cars</title>
</head>
<body>
<header>
<nav>
<a href="creative.html"><div class="logo"><img src="./newlogo.png" alt=""></div></a>
<ul class="nav-links">
<li><a href="./videography.html">Videography</a></li>
<li><a href="./contact.html">Contact Me</a></li>
<li><a href="https://www.instagram.com/thecreativeartist.ca"><img class="insta" src="./instalogo.png" alt=""></a></li>
</ul>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
</header>
<main>
<div class=".container-fluid">
<div class="row">
<div class="col">
<img src="./Car/_SVN6246.jpg" class="img-fluid" alt="">
</div>
<div class="col">
<img src="./Car/Barbataus.jpg" class="img-fluid" alt="">
</div>
<div class="col">
<img src="" class="img-fluid" alt="">
</div>
<div class="col">
<img src="" class="img-fluid" alt="">
</div>
</div>
</div>
</main>
</body>
</html>