-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (75 loc) · 2.56 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
<!DOCTYPE html>
<html>
<link>
<title>Sebastian's Page</title>
<link rel="stylesheet" href="index.css">
</link>
</head>
<body>
<h1>Hotdog Selector</h1>
<form onsubmit="updateFunction();return false" action="#" name="myForm" onsubmit="updateFunction()">
<label for="Condition">Condition:</label>
<input type="text" name="Condition" id="Condition" value="new" required>
<label for="Temperature">Temperature (F°):</label>
<input type="text" name="Temperature" id="Temperature" value="65" required>
<label for="Length">Length (cm):</label>
<input type="text" name="Length" id="Length" value="13" required>
<label for="Condiments">Condiments:</label>
<input type="text" name="Condiments" id="Condiments" value="mustard" required>
<label for="Bread">Bread:</label>
<input type="text" name="Bread" id="Bread" value="whole-wheat" required>
<label for="Meat">Meat:</label>
<input type="text" name="Meat" id="Meat" value="turkey" required>
<input type="submit" value="Submit" />
</form>
<h3> My name is Sebastian, and to name a few things about myself,
I play piano as a hobby, I have a predilection for math,
and I have a special place in my heart for coding! </h3>
<div class="info">
<h4>Click on the blue boxes to <span class="highlight">highlight</span></h4>
<h4>Click on the hotdog to <span class="upset">upset</span> him</h4>
</div>
<hr>
<div class="wrapper">
<div class="options">
<div class="section" id="section">
<div>Condition: </div>
<span id="condition"></span>
</div>
<div class="section">
<div>Temperature: </div>
<span id="temperature"></span>
</div>
<div class="section">
<div>Cooling Time: </div>
<span id="coolingTime"></span>
</div>
<div class="section">
<div>Length (cm): </div>
<span id="length"></span>
</div>
<div class="section">
<div>Consumption Time:</div>
<span id="eatingTime"></span>
</div>
<div class="section">
<div>Condiments: </div>
<span id="condiments"></span>
</div>
<div class="section">
<div>Bread: </div>
<span id="bread"></span>
</div>
<div class="section">
<div>Meat: </div>
<span id="meat"></span>
</div>
</div>
<div class="hotdog-section">
<img class="hotdog" src="hotdog.jpg">
<div class="hotdog-text"></div>
</div>
</div>
</body>
</html>
<script src="index.js"></script>