-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (43 loc) · 1.61 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
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Farmingly</title>
<link rel="stylesheet" href="css/landing.css">
<link rel="preconnect"
href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Alegreya&family=Dancing+Script:wght@500&family=Lato&display=swap"
rel="stylesheet">
<link rel="icon" href="logos/favicon.png">
</head>
<body>
<div class="landing">
<label for="toggle">☰</label>
<input type="checkbox"
id="toggle">
<div class="nav">
<img src="logos/farmingly-logo.png"
alt="small logo"
class="smalllogo">
<img src="logos/farmingly-mobile.png" alt="mobile" class="mobilelogo">
<ul >
<li class="active"><a href="index.html">Home</a></li>
<li><a href="farm_to_table.html">Farm-to-Table</a></li>
<li><a href="where_we're_at.html">Where We're At</a></li>
<li><a href="coverage.html">Coverage</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<div class="hero">
<img src="images/hero.gif" alt="hero">
<p class="title">Farmingly</p>
<p class="tagline">An essence of freedom & choice.</p>
</div>
<div class="covid" >
<p><a href="covid.html">What are we doing for COVID-19?</a></p>
</div>
</div>
</body>
</html>