-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (98 loc) · 4.02 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
97
98
99
100
<!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>Circe Botanicals | natural beauty - Home Page</title>
<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=Cormorant+Garamond:wght@700&family=Josefin+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul>
<li class="logo">
<a href="index.html">
<img src="media/images/circe-logo-dark.png" alt="Circe Botanicals. Click for home." /></a>
</li>
<li>
<a href="products.html"><span aria-hidden="true" class="fa-solid fa-pump-soap"></span>
Products</a>
</li>
<li>
<a href="#"><span aria-hidden="true" class="fa-solid fa-pen-nib"></span>
Blog</a>
</li>
<li>
<a href="about.html"><span aria-hidden="true" class="fa-solid fa-c"></span> About</a>
</li>
<li>
<a href="contact.html"><span aria-hidden="true" class="fa-solid fa-phone"></span>
Contact</a>
</li>
</ul>
</nav>
</header>
<div class="bkgd">
<section class="home">
<h1>
Sustainable, nature-infused beauty that transforms from the inside
out.
</h1>
<div class="flexrow1">
<figure>
<img src="media/images/cb-mist.jpg" alt="A bottle of the Helios Restore Mist." />
<figcaption>
<p>Helios Restore Mist</p>
</figcaption>
</figure>
<figure>
<img src="media/images/cb-mist.jpg" alt="A bottle of the Perseis Remedy Oil." />
<figcaption>
<p>Perseis Remedy Oil</p>
</figcaption>
</figure>
<figure>
<img src="media/images/cb-serum.jpg" alt="A bottle of Blue Beauty Serum." />
<figcaption>
<p>Blue Beauty Serum 50 SPF</p>
</figcaption>
</figure>
</div>
<div class="flexrow2">
<figure>
<img src="media/images/cb-ingredients.jpg" alt="Plants, test tubes, and a flask in a laboratory." />
<figcaption>
<p>Plant-derived</p>
</figcaption>
</figure>
<figure>
<img src="media/images/cb-source.jpg" alt="Sprout coming out of the ground." />
<figcaption>
<p>Sustainably sourced</p>
</figcaption>
</figure>
<figure>
<img src="media/images/cb-pigment.jpg" alt="Powdered green pigment dust." />
<figcaption>
<p>Naturally pigmented</p>
</figcaption>
</figure>
<figure>
<img src="media/images/cb-vegan.jpg" alt="100% Vegan symbol."/>
<figcaption>
<p>Vegan & non-GMO</p>
</figcaption>
</figure>
</div>
</section>
</div>
<footer>
<p>©2022 Trilogy Education Services, a 2U, Inc. brand. All Rights Reserved.</p> <p><small>This site is operated by Trilogy Education Services for educational purposes only. This is not a beauty products website. This is a fictitious company and scenario intended only for internal academic purposes.</small></p>
</footer>
</body>
</html>