-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcontactus.html
38 lines (37 loc) · 1.41 KB
/
contactus.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
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./css/collegewebsite.css">
<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>contactus</title>
</head>
<body>
<section class="contact">
<nav class="navlist">
<ul>
<li><h4>SXC</h4></li>
<li><a href="./collegewebsite.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./courses.html">Courses</a></li>
<li> <a href="./contactus.html">Contact us</a></li>
</ul>
</nav>
</section>
<div class="main-box">
<h1>Contact us</h1>
<p>World's best engineering college</p>
</div>
<br>
<form action="mailto:info@[email protected]" method="post" enctype="text/plain">
<label>Your name:</label><br>
<input type="text"name="Your name" value=""><br>
<label>Your Email:</label><br>
<input type="email"name="Your Email"value=""><br>
<label>Your message:</label><br>
<textarea name="Your message" rows="10" cols="30"></textarea><br>
<input type="Submit" name="">
</form>
</body>
</html>