-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
67 lines (64 loc) · 2.91 KB
/
about.html
File metadata and controls
67 lines (64 loc) · 2.91 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="images/Website image.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/chat.css">
<link rel="stylesheet" href="css/navcss/nav_about.css">
<link type="text/css" href="css/OverlayScrollbars.css" rel="stylesheet"/>
<script type="text/javascript" src="path/to/OverlayScrollbars.js"></script>
</head>
<body>
<div class="topnav">
<nav>
<a href="index">Home</a>
<a href="about">About</a>
<a href="contact">Contact</a>
<div class="animation start-home"></div>
</nav>
</div>
<div class="group">
<p>The <span style="background: linear-gradient(to bottom right, #00b6a4, #02569e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;">Eth0s</span> Group</p>
</div>
<div class="Crew" style="width: 100vw; height: 30vh;">
<img Cache-Control: max-age=31536000 class="img" src="images/Avatars/Generic pfp.png">
<img Cache-Control: max-age=31536000 class="img" src="images/Avatars/Hezys pfp.png">
<img Cache-Control: max-age=31536000 class="img" src="images/Avatars/iqs pfp.png">
<img Cache-Control: max-age=31536000 class="img" src="images/Avatars/Quarterbrain pfp.png">
<img Cache-Control: max-age=31536000 class="img" src="images/Avatars/Razer pfp.png">
<img Cache-Control: max-age=31536000 class="img" src="images/Avatars/jsolo pfp.png">
<img Cache-Control: max-age=31536000 class="img" src="images/Avatars/Bogo pfp.png">
<div id="crew" style="width: 95vw; height: 20vh;">
</div>
</div>
<div>
<img Cache-Control: max-age=31536000 id="mission" src="images/aQESlj5D_4x.png">
</div>
</div>
<div id="chat" class="chat">
<button class="button" onclick="document.getElementById('chat').classList.toggle('closed');">Chat</button>
<div id="messages" class="messages"></div>
<input id="input" type="text" placeholder="Say something..." autocomplete="off">
</div>
</div>
<script type="text/javascript" src="./Javascript/index.js"></script>
<script type="text/javascript" src="./Javascript/constants.js"></script>
<script type="text/javascript" src="./Javascript/OverlayScrollbars.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
//The first argument are the elements to which the plugin shall be initialized
//The second argument has to be at least a empty object or a object with your desired options
OverlayScrollbars(document.querySelectorAll("body"), {
className : "os-theme-light",
resize : "both",
sizeAutoCapable : true,
paddingAbsolute : true,
scrollbars : {
clickScrolling : true
}
});
});
</script>
</body>
</html>