-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dead by Daylight Loadout Generator</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>DBD Random Perks Generator</h1>
</header>
<main>
<div class="loadout-container">
<h2>Your Random Survivor Loadout:</h2>
<ul class="loadout-list survivor-perks">
<li class="loadout-item perk1">Perk 1</li>
<li class="loadout-item perk2">Perk 2</li>
<li class="loadout-item perk3">Perk 3</li>
<li class="loadout-item perk4">Perk 4</li>
</ul>
<button id="survivor-button">Generate Random Survivor Loadout</button>
</div>
<div class="loadout-container">
<h2>Your Random Killer Loadout:</h2>
<ul class="loadout-list killer-perks">
<li class="loadout-item perk1">Perk 1</li>
<li class="loadout-item perk2">Perk 2</li>
<li class="loadout-item perk3">Perk 3</li>
<li class="loadout-item perk4">Perk 4</li>
</ul>
<button id="killer-button">Generate Random Killer Loadout</button>
</div>
</main>
<script src="script.js"></script>
</body>
</html>