-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 3.6 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://static.leadpages.com/fonts/valueserif_typeset.css" media="all">
<link rel="stylesheet" href="https://static.leadpages.com/fonts/apercu_typeset.css" media="all">
<link rel="stylesheet" href="https://static.leadpages.com/fonts/apercu_typeset.css" media="all">
<div class="header">
<img src="assets/mainlogo.png" alt="Hair Day Logo" id="main-logo">
</div>
</head>
<nav>
<div class="nav-bar">
<ul>
<li><a href="/index.html" class="nav-text">Homepage</a></li>
<li><a href="/services.html" class="nav-text">Services</a></li>
<li><a href="/prices.html" class="nav-text">Prices</a></li>
<li><a href="/contactus.html" class="nav-text">Contact us</a></li>
</ul>
</div>
</nav>
<body>
<div class="wrapper"> <!--this is to ensure that footer is stuck to the bottom of the page-->
<section class="main-news">
<div>
<img src="/assets/newbackground.png" class="main-picture">
</div>
<article class="main-article">
<h1>Welcome to Hair Day, best hair salon in Wisconsin</h1>
<p>We’re the salon experience you’ve been begging for—inherently cool but inclusive, chic but so easy—and it doesn’t hurt that we’re obsessed with making you look and feel amazing!</p>
</article>
</section>
<section class="minor-news">
<article class="minor-article">
<h1>Services</h1>
<img src="./assets/service.png" class="minor-article-pic">
<p>From beach blonde and balayage to raven black and "uh oh, make it go back!" Short hairstyles and low-maintenance haircuts to barbered fades and covering grays. Whether you're looking to go black, blonde, brunette, or red or just rock that "rolled out of bed" look—we've got you covered.</p>
</article>
<article class="minor-article">
<h1>Community</h1>
<img src="./assets/community.png" class="minor-article-pic">
<p>One of the cool things about us is that we pride ourselves on being human-forward—that means we don’t just value the people that sit in our chairs, but those that stand behind them, as well.</p>
</article>
<article class="minor-article">
<h1>Sustainability</h1>
<img src="./assets/sustainability.png" class="minor-article-pic">
<p>The beauty industry sends 877 pounds of waste to landfills every single minute. We're changing that.
<br>
Hair Day is a certified green salon. Through our partnership with Green Circle we're able to recycle and repurpose up to 95% of the salons waste.
</p>
</article>
</section>
<div class="push"></div> <!--this is to ensure that footer is stuck to the bottom of the page-->
</div>
</body>
<footer class="footer">
<div class="footer-div">
<div class="footer-element logo">
<img src="assets/smalllogo.png" alt="Hair Day Logo" id="footer-logo">
</div>
<div class="footer-element copyright">
<p>Copyright © 2022 HAIR DAY</p>
</div>
</div>
</footer>
</html>