-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path2.html
More file actions
97 lines (84 loc) · 1.8 KB
/
Copy path2.html
File metadata and controls
97 lines (84 loc) · 1.8 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
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #303030;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #f59014;
color: white;
}
.collapsible {
background-color: #000;
color: black;
cursor: pointer;
padding: 18px;
width: 50%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #555;
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
background-color: #000;
color: white;
}
</style>
</head>
<body>
<div class="topnav">
<a class="active" href="index.html">Home</a>
<a href="https://project-pypc.github.io/index.html">PyPc</a>
<a href="https://project-pypc.github.io/op.html">Other Projects</a>
<a href="https://github.com/jacksoncraft859/Project-PyPc">Github</a>
<a href="about.html">About</a>
</div>
<body style="background-color:black;">
<h1 style="color:white;">Error Site Not Found</h1>
<button class="collapsible"> </button>
<div class="content">
<p>stuff 2 add.</p>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
</script>
</body>
</body>
</html>