-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
89 lines (81 loc) · 3.64 KB
/
faq.html
File metadata and controls
89 lines (81 loc) · 3.64 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-150933241-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-150933241-1");
</script>
<!-- Meta Tags-->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="Cache-control" content="public" />
<meta name="description"
content="Pearl Hacks is a hackathon for female and gender non-conforming students. We especially cater to first-time hackers who are looking for a supportive environment to explore technology." />
<meta name="google-site-verification" content="BVA1NKpsy9IenrjkPDUVV9naJOgnlX8MpPhV5wT_c0w" />
<!-- Favicon -->
<link rel="icon" href="assets/images/ph-favicon.svg" type="image/svg" />
<link rel="shortcut icon" href="assets/images/ph-favicon.svg" type="image/svg" />
<!-- CSS (Bootstrap, Custom Styles -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous" />
<link rel="stylesheet" href="assets/styles.css" />
<link rel="stylesheet" href="assets/nav.css" />
<!-- Bootstrap Script Requirements (Slim JQuery, Popper, Bootstrap, Font Awesome) -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/54e7e1ecc6.js" crossorigin="anonymous"></script>
<!-- Custom Scripts -->
<script>
$(document).ready(function () {
$("body>footer").load("./components/footer.html");
$("body>header").load("./components/navbar.html");
var scroll_pos = 0;
$(document).scroll(function () {
scroll_pos = $(this).scrollTop();
if (scroll_pos > 100) {
$(".navbar").css("box-shadow", "0px 2px 3px rgb(0,0,0,.3)");
} else if (scroll_pos <= 100) {
$(".navbar").css("box-shadow", "none");
}
if (window.pageYOffset < 100) {
$(".navbar").css("background-color", "var(--beige)");
}
if (window.pageYOffset > 100) {
$(".navbar").css("background-color", "white");
}
});
});
</script>
<script src="assets/scripts/faq.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.21.4/axios.min.js"
integrity="sha512-lTLt+W7MrmDfKam+r3D2LURu0F47a3QaW5nF0c6Hl0JDZ57ruei+ovbg7BrZ+0bjVJ5YgzsAWE+RreERbpPE1g=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<title>FAQ | Pearl Hacks</title>
</head>
<body>
<header></header>
<main style="background-color: var(--beige);">
<div id="decoration1">
<header class="py-0 m-0">
<h1 class="py-3 m-0">Pearl Hacks FAQ</h1>
</header>
</div>
<div id="faq" class="container py-4">
</div>
</main>
<footer style="background-color: var(--beige);"></footer>
</body>
</html>