-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtacoTimer.html
51 lines (44 loc) · 1.75 KB
/
tacoTimer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="tacoTimer.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Syne+Tactile&display=swap" rel="stylesheet">
<title>Taco Timer</title>
</head>
<body>
<h1>TACO TIMER</h1>
<main>
<section id='btn-section'>
<div>cook time
<div name='flip-settings' id='flip-settings'>
<div>
<!-- <label for="first">first</label> -->
<input type="number" name='first' id='first' min='1' max='60' value='3'>
</div>
<div>
<!-- <label for="second">second</label> -->
<input type="number" name='second' id='second' min='1' max='60' value='10'>
</div>
<div>
<!-- <label for="third">third</label> -->
<input type="number" name='thrid' id='third' min='1' max='60' value='3'>
</div>
</div>
</div>
<label for="size" id='size-label'>size</label>
<input type="range" name='size' class='slider' min='100' max='400' value='200' id='size'>
<button id='undo'>UNDO</button>
</section>
<section id='pan-section'>
<div id="frying-pan">
</div>
</section>
<section class='filler'></section>
</main>
</body>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="tacoTimer.js"></script>
</html>