-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (96 loc) · 2.92 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ryan's Roses</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Shadows+Into+Light&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/styles.css" />
<script src="js/script.js" defer></script>
</head>
<body>
<header>
<div class="top-nav">
<div class="content-wrapper">
<h2>Fresh and locally grown</h2>
<nav>
<ul>
<li>Today's Specials</li>
<li>Contact Us</li>
</ul>
</nav>
</div>
</div>
<div class="content-wrapper">
<h1 class="main-title">Ryan's Roses</h1>
<h2 class="tagline">Express yourself without saying a word.</h2>
</div>
</header>
<main class="content-wrapper">
<div class="intro">
<p>Available today</p>
</div>
<section class="gallery">
<figure>
<img src="img/clara.jpeg" alt="Flower bouquet" />
<figcaption>The Clara.</figcaption>
</figure>
<figure>
<img src="img/joan.jpeg" alt="Flower bouquet" />
<figcaption>The Elizabeth.</figcaption>
</figure>
<figure>
<img src="img/jonas.jpeg" alt="Flower bouquet" />
<figcaption>The Jonas.</figcaption>
</figure>
<figure>
<img src="img/nell.jpeg" alt="Flower bouquet" />
<figcaption>The Nell.</figcaption>
</figure>
<figure>
<img src="img/philip.jpeg" alt="Flower bouquet" />
<figcaption>The Philip.</figcaption>
</figure>
<figure>
<img src="img/sasha.jpeg" alt="Flower bouquet" />
<figcaption>The Sasha.</figcaption>
</figure>
</section>
</main>
<footer class="contact">
<div class="content-wrapper">
<h3>We're here for you every day of the week.</h3>
<p>Mon-Fri 9-9 | Sat-Sun 9-5</p>
<address>
+1-555-989-2339<br />
2746 Bloomington Ave <br />
</address>
<ul>
<li>
<a href="#"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="#"><i class="fas fa-mobile-alt"></i></a>
</li>
</ul>
</div>
</footer>
</body>
</html>