-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
34 lines (29 loc) · 1.11 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
33
34
<!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">
<title> Contact</title>
<link rel="stylesheet" href="contact.css">
<link rel="icon" type="image/x-icon" href="Al-amin.png">
</head>
<body>
<ul>
<li><a href="home.HTML"> Home</a></li>
<li><a href="About.HTML"> About</a></li>
<li><a href="Portfolio.html"> Portfolio</a></li>
<li><a href="contact.html"> contact</a></li>
</ul>
<div class="container">
<form action="https://formsubmit.co/[email protected]" method="POST">
<h3> Contact Me</h3>
<input type="text" id="name" placeholder="Your Name" required>
<input type="email" id="Email" placeholder=" email Id" required>
<input type="text" id="Phone" placeholder=" Phone No." required>
<textarea id="Messege" rows="4" placeholder=" Write messege here"></textarea>
<button type="submit">Send</button>
</form>
</div>
</body>
</html>