-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
44 lines (37 loc) · 996 Bytes
/
main.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
<!DOCTYPE html>
<html>
<head>
<title>Rythm Hands</title>
</head>
<body>
<!--
simple HTML structure that includes a button and a container where the images will be displayed:
-->
<div>
<h1>Rythm Hands</h1>
</div>
<div>
<button id="myButton1">Show Random Images</button>
<button id="myButton2">Hide svg</button>
<button id="myButton3">Show svg</button>
</div>
<div>
<div style="float:left;" >
<h2>Left Hand</h2>
<img id="imageElement1"></img>
</div>
<div style="float:left; width: 30px">
<p></p>
</div>
<div style="float:left;">
<h2>Right Hand</h2>
<img id="imageElement2"></img>
</div>
</div>
<div>
<h2>SVG</h2>
<object id="imageElement3" type="image/svg+xml" data="img/notes2.svg">Your browser does not support SVG</object>
</div>
<script src="js/rythmhands.js"></script>
</body>
</html>