-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (70 loc) · 2.13 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
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Xaver Drabik</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="parallax.css">
<script src="JS/parallax.js"></script>
<script src="JS/typed.js"></script>
</head>
<body>
<div class="layer1 parallax--bg1">
<div class="layer2 parallax--bg2">
<div class="layer3 parallax--bg3">
<div class="layer4 parallax--bg4">
<div class="content">
<div class="header">
<div class="text">
<h1>Xaver Drabik</h1>
<h2 class="type"></h2>
<a href="download.txt" download>
<button class="button">Download</button>
</a>
</div>
</div>
<div class="wrapper">
<div class="table">
<div class="left">
<b>left</b>
</div>
<div class="right">
<b>right</b>
</div>
</div>
</div>
<h1>Design mit Style.(css)</h1>
<div class="gallery" id="section1">
<img src="gallery/bild1.jpg">
<p>This Text descripes the Placeholder up above! :o</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
function scrollWin() {
window.scrollTo(300, 500);
window.scrollTo(0, 0);
}
window.onload = scrollWin;
</script>
<script>
var typed = new Typed('.type', {
strings: ["Typed", "Text",],
typeSpeed: 30,
backSpeed: 40,
backDelay: 1000,
showCursor: true,
smartBackspace: false,
loop: true
});
</script>
</body>
</html>