-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (23 loc) · 937 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (23 loc) · 937 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="big-container">
<div class="container">
<img src="assets/guitar@2x.png" class="instrument hide guitar" alt="guitar" width="400" height="400">
<img src="assets/piano@2x.png" class="instrument hide piano" alt="piano" width="400" height="400">
<img src="assets/xylophone@2x.png" class="instrument hide xylophone" alt="xylophone" width="400" height="400">
<img src="assets/bass@2x.png" class="instrument hide bass" alt="bass" width="400" height="400">
<img src="assets/choose@2x.png" class="instrument hide choose" alt="choose" width="400" height="400">
<img src="assets/intro.gif" class="instrument intro" alt="intro" width="400" height="400">
</div>
</div>
<script>
require('./renderer.js');
</script>
</body>
</html>