-
Notifications
You must be signed in to change notification settings - Fork 0
/
creative.html
66 lines (62 loc) · 2.33 KB
/
creative.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 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="./style.css">
<link rel="stylesheet" href="./headstyle.css">
<title>Home</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 justify-content-md-center">
<a href="./portraits.html">
<div class="col people">
<img src="./Portraits/GirlsMountain.JPG" class="img-fluid" alt="">
</div>
</a>
<a href="./street.html">
<div class="col street">
<img src="./Street/blueClockVNC.jpg" class="img-fluid" alt="">
</div>
</a>
</div>
<div class="row justify-content-md-center">
<a href="./cars.html">
<div class="col cars">
<img src="./Car/Barbataus.jpg" class="img-fluid" alt="">
</div>
</a>
<a href="./nature.html">
<div class="col nature">
<img src="./Nature/SnowMountains.jpg" class="img-fluid" alt="">
</div>
</a>
</div>
</div>
</main>
</body>
</html>