-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewpage2.html
51 lines (48 loc) · 2.33 KB
/
newpage2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/hobbies/hobbies_Icon.png">
<title>Samuel's Hobbies Page</title>
<link rel="stylesheet" href="css/html5reset.css">
<link rel="stylesheet" href="css/newhome.css">
<link rel="stylesheet" href="css/newpage2.css">
</head>
<body>
<div class="skip"><a href="#cooking">Skip to Main Content</a></div>
<header>
<div id="sidebar">
<img src='images/hobbies/hobbies_Icon.png'; alt="Hobbies Icon">
<p> CLICK ON IMAGES FOR EXPLANATIONS </p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="newpage1.html">Projects</a></li>
<li class="active"><a href="newpage2.html">Hobbies</a></li>
</ul>
</nav>
</header>
<main>
<div id="container">
<h1> HOBBIES </h1>
<div class="gallery">
<img id="cooking" tabindex ="0" src = "images/hobbies/MyPic2.jpeg" alt = "Picture of Me Cooking">
<img id="programming" tabindex ="0" src = "images/hobbies/programming_pic.png" alt = "Programming Icon">
<img id="soccer" tabindex ="0" src = "images/hobbies/soccer_pic.jpeg" alt = "Picture of my soccer team">
<img id = "minecraft" tabindex ="0" src = "images/hobbies/minecraft_icon.jfif" alt = "Minecraft Steve">
<img id = "workout" tabindex ="0" src = "images/hobbies/workout_icon.png" alt = "Workout Icon">
<img id = "bucks" tabindex ="0" src = "images/hobbies/bucks_pic.jfif" alt = "Giannis Adetokumboh">
<img id = "books" tabindex ="0" src = "images/hobbies/alex_rider.jfif" alt = "Alex Rider Book">
<img id = "anime" tabindex ="0" src = "images/hobbies/naruto.jpg" alt="Naruto Uzumaki">
<img id = "manutd" tabindex ="0" src = "images/hobbies/manutd.jpg" alt="Manchester United">
</div>
</div>
</main>
<footer>
<p>© Samuel Sonoiki Portfolio. All rights reserved.</p>
</footer>
<script src="js/newpage2.js"></script>
</body>
</html>