-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
42 lines (37 loc) · 1.17 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= , initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<title>Gear Up!</title>
</head>
<body>
<header>
<nav>
<!--To navigate in the website-->
<ul>
<li id="Top"><a href="index.html">Home Page</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="firtVisit.html">Your First Visit</a></li>
<li><a href="courses.html">Our Courses</a></li>
<li><a href="subscribe.html">Subscribe!</a></li>
</ul>
</nav>
</header>
<main>
<section>
<picture>
<img src="assets\images\pexels-allan-mas-5383743.jpg" id="hero-pic"
alt="Hero picture. Man climbing bouldering wall. Picture taken from above when climbers is starting the climbing" />
</picture>
<div id="tex-box">
<h1>Gear Up!</h1>
</div>
</section>
</main>
<footer>
<p><a href="#Top">Back to the top</a></p>
</footer>
</body>
</html>