-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprac.html
More file actions
30 lines (26 loc) · 934 Bytes
/
Copy pathprac.html
File metadata and controls
30 lines (26 loc) · 934 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>form</title>
<link rel = 'stylesheet' href = 'prac.css' />
</head>
<body>
<section class="form-container">
<header>NASCON Event Registration Form</header>
<form action="" class="form">
<div class="input-box">
<label>Full Name</label>
<input type="text" placeholder="Enter your full name" required />
</div>
<div class="input-box">
<label>Age</label>
<input type="number" placeholder="Enter your age" required />
</div>
<div class="input-box">
<label>Email Address</label>
<input type="text" placeholder="Enter your email address" required />
</div>
</form>
</section>
</body>
</html>