-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (51 loc) · 1.41 KB
/
index.html
File metadata and controls
52 lines (51 loc) · 1.41 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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>Tifflors Blog</title>
<meta name="description" content="Tifflors Blog" />
<meta name="author" content="Julian Fromberg" />
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<img class="background" src="./images/3880742.png">
<header>
<a href="index.html"><h1>Tifflors Schiffblog</h1></a>
</header>
<div class="pos">
<div class="gallery">
<a target="_blank" href="./articles/890J.html">
<img src="./images/09_890Jump_Space.jpg">
</a>
<div class="desc"><p>Origin 890Jump</p></div>
</div>
<div class="gallery">
<a target="_blank" href="./articles/400i.html">
<img src="./images/400i_cruising_through_Area18_3.15.png">
</a>
<div class="desc"><p>Origin 400i</p></div>
</div>
<div class="gallery">
<a target="_blank" href="./articles/cutlass-red.html">
<img src="./images/star-citizen-cutlass-red_6089588.jpg">
</a>
<div class="desc"><p>Cutlass Red</p></div>
</div>
</div>
<script>
var myIndex = 0;
slide();
function slide() {
var i;
var x = document.getElementsByClassName("gallery");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(slide, 2000);
}
</script>
</body>
</html>