-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
52 lines (40 loc) · 2.08 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
<!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>Nature at Home - About</title>
<!--font info-->
<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=Meow+Script&display=swap" rel="stylesheet">
<!--css style link-->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body id="main-background">
<button id="dark-mode-btn" onclick="toggleDarkMode()">Switch to Light Mode</button>
<a class="other-links dark" href="index.html"><h1 id="page-title">Nature at Home</h1></a>
<nav >
<ul id="menu-bar">
<li ><a class="menu-links dark" href="index.html">Home</a></li>
<li><span>|</span></li>
<li>
<div class="dropdown">
<a class="menu-links dark dropLink"href="plant-list.html">Plants</a>
<div class="dropdown-content">
<a href="pothos.html">Pothos</a>
<a href="snakeplant.html">Snake Plant</a>
<a href="peacelily.html">Peace Lily</a>
</div>
</div>
</li>
<li><span>|</span></li>
<li><a class="menu-links dark"href="about.html">About</a></li>
</ul>
</nav>
<img class="pictures" id="about-picture" src="assests/seedling.jpg" alt="Picture of hand holding seedlings">
<p id="about-paragraph">Hello! I'm an amateur houseplant gardener. It was difficult to keep my plants alive when I started, and I lost a few to overwatering. After spending hours doing research to keep my plants alive, my collection has grown! I made this page because I want to share some tips to help you get started with your own indoor garden and avoid the pitfalls I encountered.</p>
<script src="main.js"></script>
</body>
</html>