-
Notifications
You must be signed in to change notification settings - Fork 3
/
contact.html
99 lines (91 loc) · 3.54 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SF23JKLTXE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SF23JKLTXE');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="css/main.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<link
href="https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css"
rel="stylesheet"
/>
<title>Contact Us</title>
<style>
body {
margin: 0; /* Remove default margin */
overflow: hidden; /* Prevent any scrollbars */
}
iframe {
width: 100%;
height: 90vh; /* Set the iframe to full viewport height */
border: none; /* Remove iframe border */
}
</style>
<!-- Add your CSS stylesheets here if needed -->
</head>
<body>
<div class="background-container">
<!-- Sidebar Menu -->
<nav>
<div class="logo">
<i class="bx bx-menu menu-icon"></i>
<span class="logo-name" id="heading">Contact Us</span>
</div>
<div class="sidebar">
<div class="logo">
<i class="bx bx-menu menu-icon"></i>
<span class="logo-name">Menu</span>
</div>
<div class="sidebar-content">
<ul class="lists">
<li class="list">
<a href="index.html" class="nav-link" id="home">
<i class="bx bx-home-alt icon"></i>
<span class="link">Home</span>
</a>
</li>
<li class="list">
<a href="gpa-calculator.html" class="nav-link" id="gpa-calculator">
<i class='bx bxs-calculator icon'></i>
<span class="link">GPA Calculator</span>
</a>
</li>
<li class="list">
<a href="cgpa-calculator.html" class="nav-link" id="cgpa-calculator">
<i class='bx bx-calculator icon'></i>
<span class="link">CGPA Calculator</span>
</a>
</li>
<li class="list">
<a href="about.html" class="nav-link" id="about">
<i class='bx bx-group icon'></i>
<span class="link">About</span>
</a>
</li>
<li class="list">
<a href="contact.html" class="nav-link" id="contact">
<i class='bx bx-phone icon'></i>
<span class="link">Contact</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="overlay"></section>
<script src="js/main.js"></script>
<br><br><br>
<!-- Embed the Google Form here -->
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdbMg3CR4Djs5RmsaroKDH3Kvo2jX05m31ejujZWhpw2VJL-g/viewform?embedded=true"></iframe>
<!-- You can add additional content or styling for your contact page here -->
</body>
</html>