-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 915 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (29 loc) · 915 Bytes
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
<html>
<head>
<title>
JavaScript Workshop
</title>
</head>
<body>
<div>
<img width="350px" height="300px" src="http://www.mommymaricel.com/wp-content/uploads/2015/02/info-800x600.jpg">
<br>
Do you like kale?
<br>
<input type="radio" name="kale" value="true" class="kale-radio kaleTrue" id="kaleTrue">
<label for="kaleTrue">Yes</label>
<br>
<input type="radio" name="kale" value="false" class="kale-radio kaleFalse" id="kaleFalse">
<label for="kaleFalse">No</label>
</div>
<br>
<br>
<!-- <div>
<button id="debug-button" type="button">Test</button>
</div> -->
</body>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="./index.js"></script>
<script src="./memory.js"></script>
<script src="./debug.js"></script>
</html>