-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 1.05 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
<!DOCTYPE html>
<html class="introHtml" lang="en">
<head>
<title>Guess The Pitch</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="icon" href="img/trebleClef.svg">
<script src="js/app.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="mainCenter">
<img src="img/flyingNotes.svg" class="flyingNotesImg" draggable="false" alt="flying notes on sheet music lines">
<img src="img/logo.svg" class="logoImg" draggable="false" alt="Guess The Pitch logo">
<div class="playButtonDiv">
<div class="startGameBtnWrapper">
<button id="startGameBtn" class="startGameBtn"></button>
</div>
<div class="centerImageWrapper">
<img src="img/buttonBackgroundStaff.svg" class="backgroundStaffLines" draggable="false" alt="sheet music lines">
</div>
</div>
</div>
</body>
</html>