-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 927 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 927 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="base.css">
<link rel="stylesheet" href="buttons.css">
<link rel="stylesheet" href="got-styles.css">
<title>JavaScript 3 Test</title>
</head>
<body>
<button id="kill-random-lord-button" class="kill-random-lord-button"><span>Kill a lord</span><img class="kill-random-lord-button__sword-icon" src="sword.svg" alt="Sword icon"/></button>
<div id="got-house-list" class="got-house-list">
<!-- Add house list in here. To get css working use the following structure:
<div class="got-house">
<h1 class="got-house__title"></h1>
<span class="got-house__current-lord"></span>
</div>
-->
</div>
<script src="data.js"></script>
<!-- Add your javascript files here -->
</body>
</html>