-
Notifications
You must be signed in to change notification settings - Fork 0
/
c.html
27 lines (22 loc) · 931 Bytes
/
c.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="css/cf.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="contact-section">
<h1>Contact Us</h1>
<div class="border"></div>
<form name="m" class="contact-form" action="index.html" method="post" >
<input type="text" class="contact-form-text" placeholder="Your name" required>
<input type="email" class="contact-form-text" name="name" placeholder="Your email" required>
<input type="text" class="contact-form-text" placeholder="Your age (optional)">
<textarea class="contact-form-text" placeholder="Your message" required=""></textarea>
<input type="submit" class="contact-form-btn" onclick="alert('Your query has been submitted!!!')" value="Send">
</form>
</div>
</body>
</html>