forked from Prakhar-sharma-cse/spaceX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactform.html
33 lines (30 loc) · 862 Bytes
/
contactform.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
<!DOCKTYPE <html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="contactform.css">
</head>
<body>
<div class="contact-form">
<h1><u>Join Now</u></h1>
<div class="txtb">
<label>FULL NAME :</label>
<input type="text" name="" value="" placeholder="Enter your name">
</div>
<div class="txtb">
<label>EMAIL :</label>
<input type="text" name="" value="" placeholder="Enter your Email">
</div>
<div class="txtb">
<label>Phone Number :</label>
<input type="text" name="" value="" placeholder="Enter your Phone Number">
</div>
<div class="txtb">
<label>Message :</label>
<textarea></textarea>
</div>
<a class="btn">Send</a>
</div>
</body>
</html>