-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (105 loc) · 3.16 KB
/
Copy pathindex.html
File metadata and controls
112 lines (105 loc) · 3.16 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata and links to stylesheets -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>4RUNNERS</title>
<!-- Link to FontAwesome for icons -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
<!-- Link to external CSS file -->
<link rel="stylesheet" href="style.css" />
<!-- Link to Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Navigation bar -->
<nav>
<div class="logo">4RUNNERS</div>
<div class="nav-items">
<a href="store.html">Store</a>
<a href="login.html">Login</a>
<a href="about.html">About</a>
</div>
</nav>
<!-- Hero section with image and text overlay -->
<section id="hero-outer">
<article id="hero-image">
<img
src="assets/images/runnersincity.jpg"
alt="peopleyellow"
class="hero-image"
/>
</article>
</section>
<!-- Section highlighting the brand's values -->
<section class="values">
<h3>Freedom, Endurance, Speed</h3>
</section>
<section class="home-buttons">
<p>
<a href="store.html"><button>Store</button></a>
</p>
<p>
<a href="login.html"><button>Login In</button></a>
</p>
<p>
<a href="login.html"
><button>Sign up today to receive 10% off your first order</button></a
>
</p>
<p>
<a href="fitness.html"><button>Free Fitness Guide</button></a>
</p>
<p>
<a href="about.html"><button>About Us</button></a>
</p>
</section>
<!-- Section highlighting the brand's values -->
<section class="values">
<h3>
4RUNNERS Crafted by Runners, for Runners – Elevate Your Performance
</h3>
</section>
<!-- Footer with social media links -->
<footer>
<ul class="social-networks">
<li>
<a href="https://www.facebook.com" target="_blank"
><i class="fab fa-facebook"></i
></a>
</li>
<li>
<a href="https://www.twitter.com" target="_blank"
><i class="fab fa-twitter-square"></i
></a>
</li>
<li>
<a href="https://www.instagram.com" target="_blank"
><i class="fab fa-instagram"></i
></a>
</li>
<li>
<a href="https://www.strava.com" target="_blank"
><i class="fab fa-strava"></i
></a>
</li>
</ul>
</footer>
</body>
</html>