-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathass3.html
32 lines (29 loc) · 1.1 KB
/
ass3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Form</title>
<link rel="stylesheet" href="css/ass3.css"/>
</head>
<body>
<h1>Contact Form</h1>
<section class="section main">
<form method="get" action="#">
<label><h2>Name:<span style="color: red">*</span></h2></label>
<input type="text" required name="firstname" placeholder=" "/>
<input type="text" required name="lastname" placeholder=" "/>
<p> First name Last name</p>
</form>
</section>
<div class="section footer">
<div class="content"/>
<form method="get" action="#">
<label><h2>Email:<span style="color: red">*</span></h2></label>
<input type="email" required />
<label><h2>Phone:<span style="color: red">*</span></h2></label>
<input type="Phone" required/>
</form>
</div>
<button type="submit">Submit</button>
</body>
</html>