forked from sangamhoni/harmonisync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomepage.html
More file actions
49 lines (45 loc) · 1.82 KB
/
Copy pathhomepage.html
File metadata and controls
49 lines (45 loc) · 1.82 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
<!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="./Flask app/static/homepage.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="app-name">
<div class="logo">
<img src="./Flask app/static/logo-svg-yellow.svg" alt="#">
</div>
<div>
<h2>HarmoniSync</h2>
<p>Join the Beat, <u><i>Sync</i></u> with the World.</p>
</div>
</div>
<hr>
</div>
</header>
<main>
<div class="container">
<div class="about-app">
<p>Welcome to <u>HarmoniSync</u> — your musical playground! Upload any music sheet, transform it for your favorite instruments, and jam along with interactive features.</p>
<p>Share your creations and connect with fellow music lovers. Let’s create musical magic together!</p>
</div>
<div class="buttons">
<a class="button" href="#">SIGN UP</a>
<a class="button" href="#">LOG IN</a>
</div>
</div>
</main>
<footer>
<p>made with <3 by <u><a href="./team-intro.html" target="_blank">Team HarmoniX</a></u> </p>
<div class="logout-btn">
<i class="fa-solid fa-arrow-right-from-bracket"></i>
Logout
</div>
</footer>
</body>
</html>