-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
78 lines (70 loc) · 2.17 KB
/
test.html
File metadata and controls
78 lines (70 loc) · 2.17 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
<html><head>
<style>
html, body{
overflow-y: scroll;
color:black;
}
a {
color:black;
}
.editing {
background-color: #FFFF00;
}
.file {
color:black;
}
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
}
</style>
</head>
<body class="edit">
<table style="height:100%;">
<tbody><tr style="height:100%;">
<td>
<div id="edit mainContent" style="position: absolute; top:0%;">
<h3>Files:</h3>
<div id="files">
<a href="#" class="file">404.html</a>
<br>
<a href="#" class="file">about-me.html</a>
<br>
<a href="#" class="file">edit.html</a>
<br>
<a href="#" class="file">footer.html</a>
<br>
<a href="#" class="file">header.html</a>
<br>
<a href="#" class="file">index.html</a>
<br>
<a href="#" class="file">scripts/carousel.js</a>
<br>
<a href="#" class="file">scripts/carousel.min.js</a>
<br>
<a href="#" class="file">scripts/edit.js</a>
<br>
<a href="#" class="file">scripts/edit.min.js</a>
<br>
<a href="#" class="file">scripts/index_lines.js</a>
<br>
<a href="#" class="file">scripts/index_lines.min.js</a>
<br>
<a href="#" class="file">styles/main_style.css</a>
<br>
<a href="#" class="file">styles/main_style.min.css</a>
<br>
<a href="#" class="file">work.html</a>
<br>
</div>
</div>
</td>
</tr>
</tbody></table>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="./files.js"></script>
</body></html>