-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
77 lines (76 loc) · 3.3 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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="icon" type="image/png" href="assets/logo.png">
<link rel="stylesheet" href="styleinst.css">
<style>@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');
</style>
</head>
<body>
<header>
<div class="nav-hero">
<div class="logo">
<img src="assets/logo.png" alt="GoYoga Logo">
<h1>GoYoga</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<section class="contact">
<h2>We'd love to hear from you</h2>
<div class="contact-options">
<div class="contact-option">
<h3>Rishita Chourey</h3>
<p>Worked on Backend (python based)</p>
<p>UCE2022444 - Second Year</p>
<p>Computer Engineering</p>
<button class="button" onclick="window.location.href = 'mailto:rishita.chourey@cumminscollege.in';">Mail 📬</button>
</div>
<div class="contact-option">
<h3>Isha Bhagat</h3>
<p>Worked on Backend (python based)</p>
<p>UCE2022428 - Second Year</p>
<p>Computer Engineering</p>
<button class="button" onclick="window.location.href = 'mailto:isha.bhagat@cumminscollege.in';">Mail 📬</button>
</div>
<div class="contact-option">
<h3>Isha Baviskar</h3>
<p>Worked on Frontend</p>
<p>UCE2022427 - Second Year</p>
<p>Computer Engineering</p>
<button class="button" onclick="window.location.href = 'mailto:isha.baviskar@cumminscollege.in';">Mail 📬</button>
</div>
<div class="contact-option">
<h3>Anushka Dalvi</h3>
<p>Worked on Frontend</p>
<p>UCE2022447 - Second Year</p>
<p>Computer Engineering</p>
<button class="button" onclick="window.location.href = 'mailto:anushka.dalvi@cumminscollege.in';">Mail 📬</button>
</div>
<div class="contact-option">
<h3>Diksha Talathi</h3>
<p>Worked on Frontend</p>
<p>UCE2022651 - Second Year</p>
<p>Computer Engineering</p>
<button class="button" onclick="window.location.href = 'mailto:dikash.talathi@cumminscollege.in';">Mail 📬</button>
</div>
</div>
</section>
</div>
<footer>
<p> 2024 GoYoga - Embrace the Journey, Embrace the Yoga Lifestyle.</p>
</footer>
<script src="email.js"></script>
</body>
</html>