-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
49 lines (41 loc) · 1.84 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Planted | About</title>
<link rel="stylesheet" href="./styles/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&family=Roboto:ital@0;1&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/b1b1a9bb2c.js" crossorigin="anonymous"></script>
</head>
<body class="contact-body">
<header class="contact-header"> <!-- header STARTS -->
<nav class="nav-bar"> <!-- .nav-bar STARTS -->
<div class="wrapper"> <!-- .nav-bar .wrapper STARTS -->
<ul class="flex-nav-container">
<li class="logo-li"><p class="logo">Planted</p></li>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html" class="current-page">About</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</div> <!-- .nav-bar .wrapper ENDS -->
</nav> <!-- .nav-bar ENDS -->
<div class="wrapper contact"> <!-- header .wrapper STARTS -->
<div class="about-header-div">
<h1 class="about-header">About Planted. Coming Soon!</h1>
</div>
</div> <!-- header .wrapper ENDS -->
</header> <!-- header ENDS -->
<main class="about-page-main"> <!-- main STARTS -->
<div class="wrapper"> <!-- main .wrapper STARTS -->
</div> <!-- main .wrapper ENDS -->
</main> <!-- main ENDS -->
<footer class="footer"> <!-- footer STARTS -->
<p>Copyright © 2022 Juno College</p>
</footer> <!-- footer ENDS -->
</body>
</html>