-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.14 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">
<title>Lux - Enabling Enhanced Transactions</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Lux</h1>
<p>Enabling Enhanced Transactions</p>
</header>
<main>
<section id="waitlist">
<h2>Join our Waitlist</h2>
<form id="signup-form">
<input type="email" id="email" placeholder="Enter your email" required>
<select id="user-type">
<option value="customer">Customer</option>
<option value="merchant">Merchant</option>
</select>
<button type="submit">Sign Up</button>
</form>
</section>
<section id="listings">
<h2>Featured Listings</h2>
<div id="listings-container"></div>
</section>
</main>
<footer>
<p>© 2024 Lux. All rights reserved.</p>
</footer>
<script src="data.js"></script>
<script src="script.js"></script>
</body>
</html>