-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetquota.html
29 lines (24 loc) · 938 Bytes
/
getquota.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
<!DOCTYPE html>
<html>
<head>
<title>Get Quotation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Get Quotation</h1>
</header>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email address" required>
<label for="company">Company Name:</label>
<input type="text" id="company" name="company" placeholder="Enter your company name" required>
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Enter your message"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>