-
Notifications
You must be signed in to change notification settings - Fork 8
/
contact.html
110 lines (104 loc) · 4.33 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
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="./assets/GCOE.png" />
<link rel="stylesheet" href="./styles.css" />
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css">
<script src="https://kit.fontawesome.com/337c394ef7.js" crossorigin="anonymous"></script>
<title>Contact Us</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/icons/favicon-32x32.png" />
<!-- Animate CSS CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Font awesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
</head>
<body>
<!-- Navbar -->
<nav>
<a href="/"><h1>Coding Club</h1></a>
<ul class="navigation">
<li><a href="#about" class="nav-link">About Us</a></li>
<li><a href="#projects" class="nav-link">Projects</a></li>
<li><a href="./contact.html" class="nav-link">Contact</a></li>
</ul>
<button class="burger-menu" id="burger-menu">
<ion-icon class="bars" name="menu-outline"></ion-icon>
</button>
</nav>
<!-- Ion icons scripts -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<script>
const fileInput = document.getElementById('file-input');
const burger = document.querySelector("#burger-menu");
const ul = document.querySelector("nav ul");
const nav = document.querySelector("nav");
burger.addEventListener("click", () => {
ul.classList.toggle("show");
});
// Select nav links
const navLink = document.querySelectorAll(".nav-link");
navLink.forEach((link) =>
link.addEventListener("click", () => {
ul.classList.remove("show");
})
);
</script>
<Center><h1 class="contactpage">Get In Touch!</h1></Center>
<div class="contact">
<h2>You can contact us for following queries:</h2>
<p>1. To collaborate on a project.</p>
<p>2. To join the community.</p>
<p>3. For paid contracts.</p>
<a href="https://chat.whatsapp.com/C4ZkTO4Z7QO246c9gAon5K"><button>Contact Us</button></a>
</div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>Coding Club <div class="underline"><span></span></div>
</h4>
<p>
Coding Club GCOEA is a coding community of Government College of Engineering for students who are interested
in coding, development and computer engineering.
</p>
</div>
<div class="footer-col">
<h4>Links<div class="underline"><span></span></h4>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Newletter<div class="underline"><span></span></h4>
<form>
<i class="far fa-envelope"></i>
<input type="email" placeholder="Enter your email id" required>
<button type="submit"><i class="fas fa-arrow-right"></i></button>
</form>
</div>
<div class="footer-col">
<h4>Follow Us<div class="underline"><span></span></h4>
<div class="social-links">
<a onclick="facebook()" href="#" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://chat.whatsapp.com/C4ZkTO4Z7QO246c9gAon5K" target="_blank"><i
class="fab fa-whatsapp"></i></a>
<a href="https://github.com/GCOEA-Coding-Club" target="_blank"><i class="fab fa-github"></i></a>
<a href="#" target="_blank"><i class="fab fa-discord"></i></a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>