-
Notifications
You must be signed in to change notification settings - Fork 0
/
interests.html
69 lines (48 loc) · 2.53 KB
/
interests.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name = "viewport" content="width=device-width">
<title>Interests -- Youssef Hamed</title>
<link rel="stylesheet" href="style.css">
</head>
<div id = "topline"></div>
<body>
<nav>
<ul class="menu-bar">
<li class = "menu-element"><a href="index.html">About</a></li>
<li class = "menu-element"><a href="skills.html">Skills</a></li>
<li class = "menu-element"><a href="education.html">Education</a></li>
<li class = "menu-element"><a href="experinece.html">Experience</a></li>
<li class = "menu-element"><a class ="active"href="interests.html">Interests</a></li>
</ul>
</nav>
<div class="container">
<div class="inner-container">
<div class = "left-sidebar">
<figure class = "photo">
<img src = "https://i.pinimg.com/474x/8d/df/2c/8ddf2c29f7fc9b4f259ffd00bd1c9f74.jpg" alt = "Never gonna give you up"
width = "200"
height = "225">
</figure>
<figcaption class="rickcaption1"><h2>Youssef Hamed</h2></caption>
<figcaption class = "rickcaption">Undergraduate Student</figcaption>
<figcaption class = "rickcaption"><a class = "reg-link" href="mailto:[email protected]">[email protected]</a></figcaption>
</div>
<div class="main-content-container">
<div class = "interests">
<h2>Interests</h2>
<ul class = "interests-list">
<li style = "padding: 5px;">Reading</li>
<li style = "padding: 5px;">Programming</li>
<li style = "padding: 5px;">Playing video-games</li>
<li style = "padding: 5px;">Watching anime</li>
<li style = "padding: 5px;">Photography (see my work on <a class = "reg-link" target ="_blank" href = "https://www.pinterest.ca/">Pinterest</a>)</li>
</ul>
</div>
</div>
</div>
<footer>© Youssef Hamed 2023</footer>
</div>
</body>
</html>