-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpolicy.html
77 lines (73 loc) · 3.01 KB
/
policy.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" data-theme="light">
<head>
<title>Project-Hub V2 | Policy</title>
<link rel="icon" href="favicon.png" />
<link rel="apple-touch-icon" href="favicon.png" />
<meta charset="UTF-8" />
<meta name="language" content="en" />
<meta name="robots" content="noindex,noarchive" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="page_styles/main.css" />
<link rel="stylesheet" href="page_styles/policy.css" />
<link rel="stylesheet" href="page_styles/animate.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lipis/[email protected]/css/flag-icons.min.css" />
<script src="https://kit.fontawesome.com/4139823eac.js" crossorigin="anonymous"></script>
<script src="scripts/gtag.js"></script> <!--google stuff-->
<script src="elements/navbar.js"></script>
<script src="elements/footer.js"></script>
<script src="scripts/panic.js"></script>
<script src="scripts/theme.js"></script>
<style>
.policy {
margin: 5vh 12.5vw;
}
.policy * {
color: var(--dark-text-color);
border-color: var(--dark-text-color);
line-height: 1.5em;
}
.policy h1 {
text-align: center;
letter-spacing: 2px;
font-size: 2.25em;
}
.policy h2 {
font-weight: 600;
font-size: 1.75em;
}
.policy p {
font-size: 1em;
font-weight: 500;
}
.policy hr {
margin: 1.5vh 0;
margin-right: 5vh;
}
</style>
</head>
<body>
<div class="policy">
<h1>Policy</h1>
<h2>This is a Text Header</h2>
<p>This is some placeholder text that will be here.</p>
<p>This is some placeholder text that will be here.</p>
<p>This is some placeholder text that will be here.</p>
<hr />
</div>
</body>
</html>