-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (39 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./img/bat-icon.png" type="image/x-icon">
<title>Batman Links</title>
<link rel="stylesheet" href="style.css">
</head>
<body id="bat-mode">
<main>
<h1 id="title">
Batman Links
</h1>
<img id="profile" src="./img/batman.jpg" onclick="changeMode()">
<br>
<button onclick="changeMode()"></button>
<ul id="bat-links">
<li>Batcave</li>
<li>Justice League</li>
<li>Gotham Police Department</li>
</ul>
<ul id="bruce-links" style="display: none">
<li>Wayne Enterprises</li>
<li>Wayne Foundation</li>
</ul>
</main>
<footer>
<p>
Developed with vengeance in Gotham City by
<a href="https://github.com/christyanbrayan" target="_blank">christyanbrayan</a>
</p>
<p>
No rights reserved
</p>
</footer>
<script src="script.js"></script>
</body>
</html>