forked from sangamhoni/harmonisync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform-page.html
More file actions
73 lines (59 loc) · 2.56 KB
/
Copy pathform-page.html
File metadata and controls
73 lines (59 loc) · 2.56 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HarmoniSync</title>
<link rel="stylesheet" href="./css/form-page.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="container">
<div class="logo">
<img src="./assets/logo/logo-svg-yellow.svg" alt="#">
</div>
<div class="hero-text">
<h3>HarmoniSync</h3>
</div>
</div>
</header>
<main>
<div class="container">
<div class="title">
<h3>Customize Your Music Sheet</h3>
<p>Upload your music sheet and choose an instrument to create your perfect arrangement!</p>
</div>
<button class="button browse-button">
<h3>Browse</h3>
</button>
<h4 class="new">Choose your instruments:</h4>
<div class="instruments-section">
<!-- Guitar -->
<button class="button instruments-btn">
<img width="50" height="50" src="https://img.icons8.com/ios/50/guitar.png" alt="guitar"/>
</button>
<!-- Trumpet -->
<button class="button instruments-btn">
<img width="48" height="48" src="https://img.icons8.com/parakeet-line/48/trumpet.png" alt="trumpet"/>
</button>
<!-- Piano -->
<button class="button instruments-btn">
<img width="48" height="48" src="https://img.icons8.com/pulsar-line/48/piano.png" alt="piano"/>
</button>
<!-- Drumset -->
<button class="button instruments-btn">
<img width="50" height="50" src="https://img.icons8.com/ios/50/drums.png" alt="drums"/>
</button>
<!-- Flute -->
<button class="button instruments-btn">
<img width="50" height="50" src="https://img.icons8.com/ios/50/flute.png" alt="flute"/>
</button>
<button class="button upload-button">
<i class="fa-solid fa-arrow-up"></i>
</button>
</div>
</div>
</main>
</body>
</html>