forked from seanyoung247/terra-matter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
59 lines (49 loc) · 2.38 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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Learn about the impact of your daily routine on the environment, how to improve to better our home, the Earth in a fun way!" />
<meta name="keywords"
content="Earth, environment, Nature, pollution, earth day, improve, lifestyle, green, learn, fun" />
<meta name="author" content="Terra Matter" />
<!-- CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/about.css">
<!-- Favicons create using the favicon.io's converter -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- JS -->
<script src="assets/js/main.js" defer></script>
<!-- Font Awesome-->
<script src="https://kit.fontawesome.com/ca208bcf52.js" crossorigin="anonymous"></script>
<title>Terra Matter - About</title>
</head>
<body id="home">
<header class="navbar">
<h1>
<a href="#home">
<img class="navbar__logo" src="assets/images/logo/terra_matter_logo_main_black.svg" alt="Terra Matter">
</a>
</h1>
<nav>
<ul class="navbar__links">
<li><a class="navbar__link" href="index.html">Home</a></li>
<li><a class="navbar__link" href="contact.html">Contact</a></li>
<li><a class="navbar__link navbar__link--active" href="#">About</a></li>
</ul>
</nav>
</header>
<main class="about">
<h2 class="about__title">About</h2>
<p class="about__content">Terra Matter is a learning web application that promotes curiosity and enjoyment in the process of acquiring knowledge about the impact of our daily routine on the environment.</p>
</main>
</body>
</html>