-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.42 KB
/
index.html
File metadata and controls
39 lines (33 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Course Registration</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Register for Art Courses</h1>
<img src="art image.jpg" alt="Art Tools" class="art-image">
<form id="registrationForm">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Your name" required>
<label for="age">Age:</label>
<input type="number" id="age" name="age" placeholder="Your age" required>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" placeholder="Your phone number" required>
<label for="course">Select Course:</label>
<select id="course" name="course" required>
<option value="scrapbooking">Scrapbooking</option>
<option value="resin_art">Resin Art</option>
<option value="doodling">Doodling</option>
<option value="quilling">Quilling</option>
</select>
<button type="submit">Register</button>
</form>
<p id="message"></p>
</div>
<script src="script.js"></script>
</body>
</html>