-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (117 loc) · 6.21 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<head>
<title>Kilseic.co.uk</title>
<link rel="stylesheet" href="main.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Press+Start+2P&display=swap"
rel="stylesheet">
</head>
<body class="dark-mode">
<div class="cube-button-container">
<i class="left-button arrow controls" onclick="rotateCube('left')"></i>
<i class="right-button arrow controls" onclick="rotateCube('right')"></i>
<div class="reset-button controls" onclick="rotateCube('reset')"></div>
<i class="up-button arrow controls" onclick="rotateCube('up')"></i>
<i class="down-button arrow controls" onclick="rotateCube('down')"></i><br>
<button onclick="rotateCube('continuous')" class="rotate-button controls">ROTATE</button>
</div>
<div class="cube-holder">
<div class="shape-cube links-table" id="shape-cube">
<div class="tcface title-face">
<div class="title-face-container">
<div class="title">
<h1>Kilseic.co.uk</h1>
<p>Home of all things Leon Cieslik</p>
</div>
<div class="profile-img-container">
<img id="profile-img"
src="https://d1fdloi71mui9q.cloudfront.net/NhnapimYTxazOQV2FPXJ_6fb7a1fcc54b5e9d17560f2e4df39b4f7">
</div>
<div class="fun-buttons">
<button class="image-change-button" onclick="seeAnotherPicture()">Who am I</button>
<input class="weird-button" type="button" onclick="location.href='http://endless.horse/';"
value="?" />
</div>
</div>
</div>
<div class="tcface left">
<div class="spotify-playlist-title">A playlist of songs to brush your teeth to <br> (<2 minutes)
</div>
<iframe src="https://open.spotify.com/embed/playlist/1ESxy6xAl7VcqozIuI2md8" width="400" height="350"
frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
</div>
<div class="tcface front">
<div class="link-box-container">
<a href="https:///www.linkedin.com/in/leon-c-51ba60b9/" target="_blank">
<div class="links-table-row">
<img src="https://www.freepnglogos.com/uploads/linkedin-blue-style-logo-png-0.png">
<p>LinkedIn<br>Profile</p>
</div>
</a>
<a href="https://www.last.fm/user/Kilseic" target="_blank">
<div class="links-table-row">
<img
src="https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/196_Lastfm_Square_logo_logos-512.png">
<p>What I'm<br>listening to</p>
</div>
</a>
</div>
</div>
<div class="tcface bottom">
My top
<select id="typeSelect" onchange="FetchTopType()">
<option value="artist" selected="selected">artists</option>
<option value="album">albums</option>
<option value="track">tracks</option>
</select>
from the last
<select id="timeSelect" onchange="FetchTopType()">
<option value="7day">7 days</option>
<option value="3month" selected="selected">3 months</option>
<option value="6month">6 months</option>
<option value="12month">12 months</option>
</select>
<div id="listings">
<a id="listing1" target="_blank"></a>
<br><a id="listing2" target="_blank"></a>
<br><a id="listing3" target="_blank"></a>
<br><a id="listing4" target="_blank"></a>
<br><a id="listing5" target="_blank"></a>
<br><a id="listing6" target="_blank"></a>
<br><a id="listing7" target="_blank"></a>
<br><a id="listing8" target="_blank"></a>
<br><a id="listing9" target="_blank"></a>
<br><a id="listing10" target="_blank"></a>
<br><a id="listing11" target="_blank"></a>
<br><a id="listing12" target="_blank"></a>
<br><a id="listing13" target="_blank"></a>
<br><a id="listing14" target="_blank"></a>
<br><a id="listing15" target="_blank"></a>
</div>
<div id="loading-spinner" class="loader"></div>
</div>
<div class="tcface right">
<div class="link-box-container">
<a href="https://www.justgiving.com/fundraising/leon-cieslik-gameheroes" target="_blank">
<div class="links-table-row">
<img src="https://i.imgur.com/AgJ0DmC.png">
<p>Charity<br>work</p>
</div>
</a>
<a href="https://www.instagram.com/kilseic_drummer/" target="_blank">
<div class="links-table-row">
<img
src="https://www.freepnglogos.com/uploads/instagram-logos-png-images-free-download-2.png">
<p>Watch me<br>drum 🥁</p>
</div>
</a>
</div>
</div>
<div class="tcface back">
<div class="toggle-body">
<div class="toggle-btn"></div>
</div>
</div>
</div>
<script src="app.js"></script>
<script type="text/javascript" src="https://platform.linkedin.com/badges/js/profile.js" async defer></script>
</body>