-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (59 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Mangata and Gallo</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img src="images/logo.png" alt="" width="32%">
</header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#jewelry">Jewelry</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<main>
<section id="home">
<article>
<img src="images/promo-banner.jpg" alt="promotional banner">
<div class="hero">
<h2>Wear your heart out!</h2>
<a href="#jewelry" alt="Shop our collection button" class="hero-text">Shop our collection</a>
</div>
</article>
</section>
<section id="jewelry">
<article class="jewel">
<img src="images/necklace.jpg" alt="necklace" max-width= "100%">
<p>Necklace</p>
</article>
<article class="jewel">
<img src="images/ring.jpg" alt="wedding ring" max-width= "100%">
<p>Wedding Ring</p>
</article>
<article class="jewel">
<img src="images/jewel.jpg" alt="jewelries" max-width= "100%">
<p>Shop All</p>
</article>
</section>
</main>
<footer>
<div class="footer-logo">
<img src="images/logo.png" alt="company logo" width="40%">
</div>
<div class="copyright">
<p>© 2022 Mangata & Gallo. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script>
</body>
</html>