-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 2.13 KB
/
index.html
File metadata and controls
49 lines (43 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Root Access :)</title>
<link rel="stylesheet" href="css/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="sidebar" style="z-index: 1">
<button type="button" name="button" class="header-btn" id="intro">Play Introduction</button>
<button type="button" name="button" class="header-btn-none">Team</button>
<button type="button" name="button" class="inner-btn-none">Dalton Overmyer</button>
<button type="button" name="button" class="inner-btn" id="dalton">• Resume</button>
<button type="button" name="button" class="inner-btn-none">Christopher McNeil</button>
<button type="button" name="button" class="inner-btn" id="chris">• Resume</button>
<button type="button" name="button" class="inner-btn-none">Thomas Abebe</button>
<button type="button" name="button" class="inner-btn" id="thomas">• CV</button>
<button type="button" name="button" class="header-btn-none">Documentation</button>
<button type="button" name="button" class="inner-btn" id="project-def">Project Definition</button>
<button type="button" name="button" class="inner-btn" id="project-git">Project GitHub</button>
<button type="button" name="button" class="inner-btn" id="website-git">Website GitHub</button>
</div>
<div class="terminal" id="terminal" style="z-index: 0">
<div id="output">
</div>
<div class="line" id="line">
<span id="cmdUser"><span class="green">rootaccess@linux-desktop</span>:<span class="blue">/root</span>$ </span><span id="cmd"><span class="blink"> <wbr class="end" id=' '></span></span>
</div>
</div>
<script src="scripts/main.js"></script>
<script>
function myAccFunc(id) {
var x = document.getElementById(id);
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>