-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (43 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VividVistas - Vrinda Portfolio</title>
<!--Google fonts link - Laila Raleway-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Laila:wght@300;400;500;600;700&
family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap" rel="stylesheet">
<!--Stylesheet link-->
<link href="./resources/css/reset.css" type="text/css" rel="stylesheet">
<link href="./resources/css/main.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class = "bg-container">
<header class="container group">
<img class ="logo" src="./resources/images/logoVividVistas.png" alt = "VividVistas logo">
<nav class="primary-nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Designs</a></li>
<li><a href="#">Booktalks</a></li>
<li><a href="#">Gardening</a></li>
</ul>
</nav>
</header>
<section class="hero container group">
<h1>Works inspired by the<br><span>Vibrance of Nature</span></h1>
<button><a href="#">Explore</a></button>
</section>
<footer class="container">
<h6>Copyright 2020 | VividVistas</h6>
<nav class="footer-nav">
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</footer>
</div>
</body>
</html>