-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (44 loc) · 1.44 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
<!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">
<link rel="stylesheet" href="./css/stylesheet.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>Home</title>
</head>
<body>
<header>
<img src="./img/logo.svg" alt="Herbal logo">
<h1>Lathers & Slathers</h1>
</header>
<nav>
<a href="./index.html">Home</a>
<a href="./about/index.html">About Us</a>
<a href="./contact/index.html">Contact</a>
</nav>
<div class="hero">
<h1>Homemade Soaps & Salves</h1>
</div>
<div class="welcome">
<p>Welcome to lathers and slathers, you home for holistic soaps and salves</p>
</div>
<section>
<p>Please excuse the mess, our site is still under construction!</p>
</section>
<footer>
<div class="footinfo">
<p>
Follow us on social media! <br>
<a href="https://www.facebook.com/">
<span class="material-icons"></span>
</a>
</p>
</div>
</footer>
</body>
</html>