-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="https://photos.app.goo.gl/CY6o3N5gvTPkV56v5" type="image/png">
<script src="script.js" defer></script>
<title>Multiverse System Store</title>
</head>
<body>
<header>
<h1>Multiverse System Store</h1>
<p>Your Journey, Your Choice, Your Infinite Tomorrow!</p>
</header>
<section>
<p>Welcome to the Multiverse System Store, where we redefine destinies and unlock infinite possibilities.</p>
<!-- You can add more content or sections here -->
<!-- Waitlist Form -->
<form action="#" method="post" id="waitlistForm" onsubmit="joinWaitlist(); return false;">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit">Join Waitlist</button>
</form>
</section>
<footer>
<p>© 2024 Multiverse System Store. All rights reserved.</p>
</footer>
</body>
</html>