forked from Aryamanz29/Web-Ideas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
29 lines (28 loc) · 1020 Bytes
/
Index.html
File metadata and controls
29 lines (28 loc) · 1020 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
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div style="text-align:center">
<h2>Contact Us</h2>
<p>Leave us a message:</p>
</div>
<div class="row">
<form action="/action_page.php">
<label for="fname">First Name *</label>
<input type="text" id="fname" required name="firstname" placeholder="Your name..">
<label for="lname">Last Name *</label>
<input type="text" id="lname" name="lastname" required placeholder="Your last name..">
<label for="email ">Email *</label>
<input type="email" id="email" name="email" required placeholder="Enter your email"style="width:100%">
<label for="How can we help you?">How can we help you?</label>
<textarea id="How can we help you?" name="How can we help you?" placeholder="Write your msg" style="height:170px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
</div>
</body>
</html>