-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (50 loc) · 1.73 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Profile Gallery</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Prompt&display=swap" rel="stylesheet">
</head>
<body>
<!-- The header content -->
<header class="container">
<div class="name-tag">
<h1>Mohammed Al-Hussaini</h1>
<h5>FRONT-END NINJA</h5>
</div>
<img src="img/Fullmetall_Alchemist.png" alt="Fullmetall_Alchemist Logo" class="logo">
</header>
<hr>
<!-- The main gallery picture -->
<div class="container">
<img src="img/original.gif" alt="Background Banner Picture" width="100%" class="main-img">
<div class="theme">
<p class="dark">Dark Theme</p>
<p class="light">Light Theme</p>
</div>
</div>
<!-- Featured work -->
<h2 id="subtitle">Favorite Anime</h2>
<div class="container">
<div class="mini-container">
<img src="img/4933200_0.jpg" alt="One punch man!" class="mini-img">
<h3>One punch man!</h3>
</div>
<div class="mini-container">
<img src="img/maxresdefault.jpg" alt="Buko no hero" class="mini-img">
<h3>Buko no hero</h3>
</div>
<div class="mini-container">
<img src="img/Demon Slayer.jpg" alt="Demon Slayer" class="mini-img">
<h3>kimetsu no yaiba</h3>
</div>
</div>
<footer>
<h6>Created by <em>Mohammed Al-Hussaini</em></h6>
</footer>
<script src="js/script.js"></script>
</body>
</html>