-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>28 Rainy Days</title>
<link href="https://fonts.googleapis.com/css2?family=Bungee+Tint&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>28 Rainy Days</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="designs.html">Designs</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
</header>
<section id="home">
<div class="hero-content">
<h2>Unique & Creative T-Shirt Designs</h2>
<p>Explore my collection of custom-made designs perfect for any occasion.</p>
<a href="designs.html" class="btn">View Designs</a>
</div>
</section>
<footer>
<div class="footer-content">
<p>© 2024 28 Rainy Days. All Rights Reserved.</p>
<ul class="social-links">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
</ul>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>