-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (71 loc) · 2.32 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
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="scss/styles.css" />
<link rel="stylesheet" href="scss/buttons.css" />
<link
href="https://fonts.googleapis.com/css?family=Kalam:700"
rel="stylesheet"
/>
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<title>The Real App</title>
</head>
<body>
<div class="title-top">
<h1>The Real App</h1>
<p>An app for creating chord charts</p>
</div>
<div class="cont">
<div class="btns">
<button class="clear-c">Clear</button>
<button class="printBtn" onclick="prints()">Print</button>
<button class="whiteBtn">Tidy</button>
<form id="add-section">
<div class="music_cont">
<button class="music-btn">New</button>
</div>
</form>
</div>
<form id="song-title-form">
<div class="song_cont">
<input id="song-title" type="text" placeholder="Song Title" />
<button class="t-btn">Add</button>
</div>
</form>
<div class="time-sig-cont">
<form id="time-sig-form-top">
<div class="input-top">
<input id="time-sig-input-top" type="text" placeholder="4/4" />
<button class="time-sig-btn-T">Add</button>
</div>
</form>
<form id="time-sig-form-bot">
<div class="input-bottom">
<input id="time-sig-input-bot" type="text" placeholder="120" />
<button class="time-sig-btn-B">Add</button>
</div>
</form>
</div>
</div>
<div class="new_song_title">
<div class="sigs-div"></div>
<div class="song-title-div"></div>
<div class="tempo-div"></div>
<!-- dynamic js title will go here -->
</div>
<div class="chart">
<!-- dynamic chords will go here -->
</div>
<div class="top-dashboard"></div>
<script src="song.js"></script>
<script src="songTitle.js"></script>
</body>
</html>