-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 2.97 KB
/
index.html
File metadata and controls
68 lines (62 loc) · 2.97 KB
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
60
61
62
63
64
65
66
67
68
<!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>Farmer's Market Webpage</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="body-container">
<header class="header">
<div class="header-btn">
<button class="header-burger" id="hamburgerButton">
<i class="fa fa-bars"></i>
</button>
</div>
<div class="logo">
<a href="#"><img src="https://assets.codepen.io/t-15440/fm-logo.png" alt="Farmers Market, Springdale, VT."></a>
</div>
<nav class="bar-nav" id="navMenu">
<ul class="header-menu">
<li><a href="index.html">Home</a></li>
<li><a href="https://www.google.com/maps" target="_blank">Location</a></li>
<li><a href="https://www.downtowngrowers.org/" target="_blank">Vendors</a></li>
<li><a href="https://doubleblindmag.com" target="_blank">Newsletter</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="banner">
<h1 class="banner-title">It's Corn Season!</h1>
</section>
<h2 class="main-content-title">What's In Season?</h2>
<main class="main-content">
<div class="main-content-item" id="blueberries">
<img src="https://assets.codepen.io/t-15440/fm-blueberries.jpg" alt="close up photo of blueberries with droplets of water on them" class="main.img">
<h3 class="main-item-title">Blueberries</h3>
<p class="main-content-description">From the Lily Farm, these berries are fat and sweet. Great with ice cream, or throw them on your breakfast cereal!</p>
<button class="main-btn">Lily Farm</button>
</div>
<div class="main-content-item" id="tomatoes">
<img src="https://assets.codepen.io/t-15440/fm-tomatoes.jpg" alt="A pile of redding-orange tomatoes, some with green stems on them" class="main.img">
<h3 class="main-item-title">Tomatoes</h3>
<p class="main-item-description">Beefsteak, Brandywine, SuperSauce, Yellow Pear, Cherry, Darkstar, and so many more choices!</p>
<button class="main-btn">Freebird Farms</button>
</div>
<div class="main-content-item" id="basil">
<img src="https://assets.codepen.io/t-15440/fm-basil.jpg" alt="close up of a basil bush" class="main.img">
<h3 class="main-item-title">Basil</h3>
<p class="main-item-description">Basil and tomatoes were made for each other. Or turn our huge bunches into pesto. Don't forget to freeze some!</p>
<button class="main-btn">Three Duck Ranch</button>
</div>
</main>
<footer class="footer">
<p>© 2024 Springdale Farmer's Market Association. All Rights Reserved.</p>
</footer>
</div>
<script src="js/custom.js"></script>
</body>
</html>