-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 1.69 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 1.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DM Encounter Builder</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.js">
</head>
<body>
<main>
<aside class="userInput">
<form action="">
<div class="form-group">
<label for="pcCount">Number Of Characters</label>
<input type="number" id="pcCount" class="form-control" name="pcCount" min="1" max="10">
</div>
<div class="form-group">
<label for="averageLvl">Average Level</label>
<input type="number" id="averageLvl" class="form-control" name="averageLvl" min="1" max="20">
</div>
<label for="difficulty">Choose Difficulty</label>
<select name="difficulty" id="difficulty">
<option value="1">Easy</option>
<option value="2">Medium</option>
<option value="3">Hard</option>
<option value="4">Deadly</option>
</select>
<input type="submit" class="btn btn-danger " value="Lets Fight!" id="submitButton">
</form>
<table class="">
<thead>
<tr class="headRow">
<th>Name</th>
<th>Challenge Rating</th>
</tr>
</thead>
<tbody id="tBody"></tbody>
<tr class="bottomRow"></tr>
</table>
</aside>
<section class="statBlockSection">
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js"></script>
<script src="config.js"></script>
<script src="main.js"></script>
</body>
</html>