-
Notifications
You must be signed in to change notification settings - Fork 16
/
contact.html
75 lines (67 loc) · 2.71 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
<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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Philosopher&family=Roboto&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<script src="script.js" defer></script>
<title>ChillZone</title>
</head>
<body>
<!--
<nav>
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="images/logo.png" alt="" width="60" height="60" class="d-inline-block align-text-center">
ChillZone
</a>
<ul class="nav nav-tabs">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
<a class="nav-link" href="about.html">About</a>
<a class="nav-link active" href="contact.html">Contact Us</a>
</ul>
</div>
</nav>
--->
<nav class="navbar">
<div class="brand-title">
<img src="images/logo.png" alt="" width="60" height="60" class="d-inline-block align-text-center">
<b>Chill Zone</b>
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="index.html"><b>Home</b></a></li>
<li><a href="about.html"><b>About</b></a></li>
<li><a href="contact.html"><b>Contact Us</b></a></li>
</ul>
</div>
</nav>
<div style="display: flex; align-items: center; justify-content: center;">
<main style="width: 100%; height: auto;">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSfnbfpS7DaItQWJhQ8KL5sXe72zYHBL-cMG2mG3NgQoqn7YCA/viewform?embedded=true"
height="900" width="100%" frameborder="0" marginheight="0" marginwidth="0" scrolling="no">Loading…</iframe>
</main>
</div>
<footer>
<h2><strong><a href="index.html">Chill Zone</a></strong></h2>
<p><em>Your relaxation hub</em></p>
<p>Made by <a href="https://github.com/nikhita28">Nikhita</a>, <a
href="https://github.com/apoorvakaushal09">Apoorva</a>, <a href="https://github.com/manas0916">Manas</a> and <a
href="https://github.com/Nisha331">Nisha</a>
</p>
<h5>© 2021 | Team Error404 | All rights reserved.</h5>
</footer>
</body>
</html>