-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 1.35 KB
/
index.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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<style>
body {
background-image: url('resources/93216.jpg');
background-size: cover;
}
</style>
</head>
<body>
<p style="font-family: Calibri; text-align: center; font-size: 30px">
Добро пожаловать на мой сайт!
</p>
<p>
<a href="http://cidlik.hopto.org/Den4ik">
<img src="resources/link_den4ik.svg" alt="link_den4ik">
</a>
</p>
<p>
<a href="http://cidlik.hopto.org/share">
<img src="resources/link_file_storage.svg" alt="link_file_storage" align="right">
</a>
</p>
<img src="resources/kotik.gif" alt="kotik" align="left" style="width:300;height:300px;">
<img src="resources/cigarette.gif" alt="cigarette" align="right" style="width:150;height:150px;">
<p>
<style>
#terminal {
width: 400px;
height: 200px;
background-color: black;
color: white;
font-family: monospace;
padding: 10px;
overflow: auto;
}
</style>
<div id="terminal">
<p id="fileContent"></p>
</div>
<script>
fetch('systeminfo.log')
.then(response => response.text())
.then(data => {
data = data.replace(/\n/g, '<br>');
document.getElementById('fileContent').innerHTML = data;
});
</script>
</p>
</body>
</html>