-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
41 lines (36 loc) · 1.49 KB
/
contact.html
File metadata and controls
41 lines (36 loc) · 1.49 KB
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
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="mystyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- contact section-->
<section id="contact-section">
<div class="container">
<h2>Contact Us</h2>
<p>Email us and keep up to date with our latest news</p>
<div class="contact-form">
<div>
<i class="fa fa-map-marker"></i><span class="form-info">SRM Institute of Science & Technology Chennai India (603203)</span><br>
<i class="fa fa-phone"></i><span class="form-info">Phone no +91-8056684427</span><br>
</div>
<div>
<form>
<input type="text" placeholder="First Name" required>
<input type="text" placeholder="Last Name" required>
<input type="Email" placeholder="Email" required>
<input type="text" placeholder="Subject" required>
<textarea name="message" placeholder="Message" rows="5" required></textarea>
<button class="submit">Send Message</button>
</form>
</div>
</div>
</div>
</section>
</body>
</html>