-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (83 loc) · 2.36 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My App Page</title>
<!-- font awesome -->
<link rel="stylesheet" href=".fontawesome-free-5.12.0-web/css/all.min.css"/>
<!-- styles -->
<title>My App Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="section-top">
<h1>Anniversary Countdown!</h1>
<h2>October 4, 2022</h2>
<form class="countdown-timer">
<h3><p id="days"></p>
<p id="hours"></p>
<p id="mins"></p>
<p id="secs"></p></h3>
<h1 id="end"></h1>
</form>
</section>
<section class="section-center">
<!-- form -->
<form class="grocery-form">
<p class="alert"></p>
<h3>Honey Do List</h3>
<div class="form-control">
<input type="text" id="grocery" placeholder="e.g. take out the trash"></div>
<button type="submit" class="submit-btn">Submit</button>
</div>
</form>
<!-- list -->
<div class="grocery-container">
<div class="grocery-list">
<article class="grocery-item">
<div class="btn-container"></div>
<button type="button" class="edit-btn">
<i class="fas fa-edit"></i>
</button>
<button type="button" class="delete-btn">
<i class="fas fa-trash"></i>
</button>
</article>
</div>
<!-- button-->
<button type="button" class="clear-btn">Clear Items</button>
</div>
</section>
<section id="diceroller">
<p>
<button data-roll="d4">D4</button>
<button data-roll="d6">D6</button>
<button data-roll="d8">D8</button>
<button data-roll="d10">D10</button>
<button data-roll="d12">D12</button>
<button data-roll="d20">D20</button>
<button data-roll="d100">D100</button>
</p>
<!--<p>
<input type="radio" id="plus">+</button>
<input type="radio" id="minus">-</button>
</label>
</p>
<p>-->
<!--<label for="modifier">
<input type="text" id="modifier">
</label>
</p>-->
<p>
<label for="adv-dis">
<input type="checkbox" id="adv-dis">
Use Advantage/Disadvantage
</label>
</p>
<textarea name="notearea" cols="25" rows="17">Notes</textarea>
<div id="result" aria-live="polite"></div>
<script src="dice.js"></script>
</section>
</body>
</html>