-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.73 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
<!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">
<meta name="author" content="András Laczkó">
<meta name="copyright" content="For educational purposes only">
<meta name="description" content="Landing page">
<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=Oswald:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Biomes</title>
<link rel="icon" type="image/x-icon" href="pictures/favicon.png">
</head>
<body id="frontPage">
<header>
<nav class="move" id="menu">
<ul class="navigation">
<li class="active"><a href="/">HOME</a></li>
<li><a href="forest.html">Forest</a></li>
<li><a href="waters.html">Waters</a></li>
<li><a href="desert.html">Desert</a></li>
<li><a href="form.html">SUBSCRIBE</a></li>
</ul>
</nav>
<h1>BIOMES</h1>
<div id="hamburger"></div>
</header>
<div id="frontPageFlex">
<h1>BIOMES</h1>
<nav id="frontPageNav">
<a class="biomes forest" href="forest.html"><h2>FOREST</h2></a>
<a class="biomes waters" href="waters.html"><h2>WATERS</h2></a>
<a class="biomes desert" href="desert.html"><h2>DESERT</h2></a>
<a class="form" href="form.html"><h2>SUBSCRIBE TO OUR <br id="frontPageBr">NEWSLETTER!</h2></a>
</nav>
</div>
<script src="app.js" defer></script>
</body>