forked from yogeshswdev/html5_CSS_JavaScript_JQuery_start
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact1.html
More file actions
49 lines (48 loc) · 2.33 KB
/
contact1.html
File metadata and controls
49 lines (48 loc) · 2.33 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
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Contact us</title>
<link rel="stylesheet" type="text/css" href="contact1.css">
<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0">
<script src="contact1.js" type="text/javascript"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init("0o7k0S0BdDSGd61i9");
})();
</script>
</head>
<body>
<nav>
<i class="fas fa-bars"></i>
</label>
<label class="logo">CONTACT</label>
<ul>
<div class="icon-bar">
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="join.html">Join Us</a></li>
<li><a href="https://forms.gle/vJGSHEzD4Prx2uEM9">Feedback</a></li>
</div>
</ul>
</nav>
<div class="container">
<div class="contact-box">
<div class="left">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d61535.96482976835!2d75.01458!3d15.430670000000001!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x6f5b1e611213bba7!2sShri%20Dharmasthala%20Manjunatheshwara%20College%20of%20Engineering%20and%20Technology.!5e0!3m2!1sen!2sus!4v1655197299439!5m2!1sen!2sus" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="right">
<h2>Contact Us</h2>
<input type="text" required="required" name="Name" id="fullName" class="field" placeholder="Your Name">
<input type="text" required="required" name="Email" id="email_id" class="field" placeholder="Your Email">
<input type="text" id="phone" class="field" placeholder="Phone">
<textarea required="required" name="message" id="message" placeholder="Message" class="field"></textarea>
<button onclick="SendMail()" class="btn">Send</button>
<button onclick="document.location.href='C/Users/DELL/Documents/VSCode/contact1.html'" class="btn">Chat with US!</button>
</form>
</div>
</div>
</div>
</body>
</html>