-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (114 loc) · 4.34 KB
/
index.html
File metadata and controls
124 lines (114 loc) · 4.34 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" media="screen and (min-width:960px)" href="style.css">
<link rel='stylesheet' media='screen and (max-width: 959px)' href='mobile.css'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--NAV Section-->
<nav id="parent-nav">
<div id="logo">
<img id="logo-img" src="assets/logo_img.png">
</div>
<div id="name">
<img id ="name-img" src="assets/StarSync Studio.png">
</div>
<div id="menu">
<div id="home">
<a href="index.html" id="home-btn">Home</a>
</div>
<div id="about">
<a href="about.html" id="abt-btn">About</a>
</div>
<div id="contact">
<a href="contact.html" id="contact-btn">Contact</a>
</div>
</div>
<div id="sign-up">
<button id="sign-up-btn" onclick="openModal()">Join Our Mailing List</button>
</div>
</nav>
<div id="wrapper">
<div id="content">
<!-- Slogan Section-->
<div id="parent-slogan">
<img id="background-img" src="assets/background-img.jpg">
<div id="slogan">
<h1>WE ARE THE MUSIC MAKERS</h1>
</div>
<div id="mission-statement">
<div id="text-box">
<h2>At StarSync Studio, our mission is to revolutionize the music production landscape by empowering creators with cutting-edge collaborative tools and AI-enhanced processes. We are committed to making high-quality music production accessible to all, fostering creativity, and building a global community of music producers, film scorers, and audio engineers. Through innovative technology and a unique subscription model, we aim to redefine the way music is made, ensuring every artist has the resources to bring their vision to life.</h2>
</div>
</div>
</div>
<!--ABOUT SECTION-->
<div id="about-parent">
<div id="about-banner">
<h2>Meet Our Team</h2>
</div>
<div id="top-row">
<div id="marley">
<p>Marley</p>
</div>
<div id="jacob">
<p>jacob</p>
</div>
</div>
<div id="bottom-row">
<div id="quinn">
<p>quinn</p>
</div>
<div id="nick">
<p>nick</p>
</div>
</div>
</div>
</div>
</div>
<div id="background-modal">
<div id="modal-content">
<div id="close" onclick="closeModal()">
+
</div>
<div id="modal-logo">
<img id="modal-logo-img" src="assets/logo_img.png" alt="starsync logo">
</div>
<form onsubmit="collectEmail()">
<div id="name-input">
<h2>Name:</h2>
<input id="name-input-input" placeholder="Your Name" required>
</div>
<div id="email-input">
<h2>Email:</h2>
<input id="email" placeholder="Your Email" required>
</div>
<div id="where-heard-from">
<h2>Where Did You Hear About Us?</h2>
<select onclick="ifOther()" name="where-heard" id="where-heard-from-input" required>
<option value="Instagram">Instagram</option>
<option value="tiktok">TikTok</option>
<option value="youtube">YouTube</option>
<option value="other">Other</option>
</select>
</div>
<div id="if-other">
<h2>If Other, Please State Where</h2>
<input id="other-input">
</div>
<div id="submit-btn-box">
<button id="submit-btn" type="submit">Submit</button>
</div>
</form>
</div>
</div>
<!-- <div id="container"></div> -->
<script src="code.js"></script>
</body>
</html>