-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
32 lines (27 loc) · 1.14 KB
/
contact.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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>contact us</title>
</head>
<body>
<div class="contact">
<h1 id="contact">contact us</h1>
<form action="/contact" method="POST">
<input type="text" name="name" placeholder="Enter your Name">
<input type="phone"name="age" placeholder="Enter your Number">
<input type="number" placeholder="Enter your age">
<input type="email" name="email" placeholder="Enter your Email">
<textarea name="text" name ="textarea" id="textarea" cols="30" rows="10"
placeholder="Let's interact tell something about you"></textarea>
<div class="contact-btn">
<button type="submit">Submit</button>
</div>
</form>
</body>
</html>