-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
38 lines (33 loc) · 1.09 KB
/
form.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
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Ad-Driven Website</h1>
<nav>
<a href="index.html">Home</a>
<a href="form.html">Sign Up</a>
</nav>
</header>
<main>
<h2>Sign Up</h2>
<form action="#" method="POST">
<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>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Submit</button>
</form>
</main>
<footer>
<p>© 2025 Ad-Driven Website. All rights reserved. | Created by Light</p>
</footer>
</body>
</html>