-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.49 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>Homepage | AdFreeGrowing</title>
<!-- Add your stylesheet here -->
<link rel="stylesheet" href="css/style.css">
<!-- Add any favicon here -->
<link
rel="icon"
type="image/png"
href="img/favicon.png">
<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=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<header class="gap-4">
<p>
<span class="material-symbols-rounded">
potted_plant
</span> AdFreeGrowing</p>
<nav>
<a href="home">Home</a>
<a href="species">Search species</a>
<a href="contribute">Contribute</a>
<a href="about">About</a>
</nav>
</header>
<main>
<section>
<h1>Welcome to AdFreeGrowing</h1>
<p>This website is under construction.</p>
</section>
<section>
<h2>Our Services</h2>
</section>
</main>
<footer>
<p>2023 Your Website Name. All rights reserved.</p>
</footer>
</body>
</html>