-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (70 loc) · 2.38 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lucky Shrub</title>
<meta name="description" content="Garden design company">
<meta name="author" content="Lucky Shrub">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="Asset [email protected]" width="200">
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html">About</a></li>
<li><a href="index.html">Shop</a></li>
<li><a href="index.html">Contact</a></li>
</ul>
</nav>
<main>
<section>
<article class="banner">
<h1>Spring sale this weekend!</h1>
<p><b>
Your favourite spring plants up to 40% off!
</b></p>
</article>
</section>
<section>
<article>
<h2>Our newest items</h2>
<img src="nursery.png" width="100%" alt="A plant nursery">
<p>
Check out our nursery for new ideas and transform any space into an oasis you can be proud of!
</p>
<a href="index.html">See our collection</a>
</article>
<article>
<h2>This week's tips</h2>
<img src="freezing.png" width="100%" alt="Plant in freezing weather">
<p>
Freezing weather alert! Useful tips on how to protect your plants and maintain your garden during the winter.
</p>
<a href="index.html">Check out tips</a>
</article>
<article>
<h2>Get to know us</h2>
<img src="gardeners.png" width="100%" aria-flowto="Gardeners with their tools">
<p>
Meet us on our Open Day on March 2nd 2024. Jason and Maria, the founders of Lucky Shrub, will be there to welcome you.
</p>
<a href="index.html">Reserve your place</a>
</article>
</section>
</main>
<footer>
<div class="logo">
<img src="Asset [email protected]">
</div>
<div class="copyright">
<p>
Copyright Lucky Shrub
</p>
</div>
</footer>
</body>
</html>