-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 957 Bytes
/
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
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="mainDiv">
<div id="deckPDiv">
<span>Deck: </span>
<span id="deckP"></span>
</div>
<!-- <button id="changeDeckButton">Change Deck</button> -->
</div>
<div id="checkBoxDiv">
<input id="changeDeckCheckbox" type="checkbox">
<label for="changeDeckCheckbox">Change Deck Mode</label>
</div>
<div id="dropdownDiv">
<select id="deckDropdown"></select>
</div>
<hr>
<h4>Front</h4>
<textarea id="frontInputField" class="mainInputField" type="text" placeholder="Front"></textarea>
<h4>Back</h4>
<textarea id="backInputField" class="mainInputField" type="text" placeholder="Back"></textarea>
<button id="addButton">Add</button>
<script src="main.js"></script>
</body>
</html>