-
Notifications
You must be signed in to change notification settings - Fork 0
/
misc.html
81 lines (69 loc) · 2.36 KB
/
misc.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport">
<title>aconfuseddragon's art and nostalgia corner</title>
<link href="/style1.css" rel="stylesheet" type="text/css" media="all and (min-width: 101vh) and (min-width: 1291px)">
<link href="/style1_mobile.css" rel="stylesheet" type="text/css" media="all and (max-width: 100vh), (max-width: 1290px)">
<script>
function startTime() {
var today = new Date();
var h = today.getHours();
var m = today.getMinutes();
m = checkTime(m);
document.getElementById('txt').innerHTML =
h + ":" + m;
var t = setTimeout(startTime, 500);
}
function checkTime(i) {
if (i < 10) {i = "0" + i}; // add zero in front of numbers < 10
return i;
}
</script>
</head>
<body onload="startTime()">
<div id="welcome">
<h1><p>aconfuseddragon's</h1>
<br>
<div class="welcome-text">
<a href="index.html"><img src="assets/title-gif.gif" title= "Home"> </a>
</div>
</div>
<div class="camerons-box">
<embed src="https://www.cameronsworld.net/" style="width:620px; height: 414px; margin-left: 10px; margin-top: 46px;">
</div>
<div class="itemIconContainer">
<div class="itemIcon">
<a href="index.html"><img src="assets/home.png" title= "~ Home ~"> </a>
</div>
<div class="itemIcon">
<a href="gallery.html"><img src="assets/art.png" title= "Gallery"> </a>
</div>
<div class="itemIcon">
<a href="diy-projects.html"><img src="assets/diy.png" title= "Projects I designed that you can make!"> </a>
</div>
<div class="itemIcon">
<a href="mailto: [email protected]"><img src="assets/email.png" title= "[email protected]"> </a>
</div>
<div class="itemIcon">
<a href="https://aconfuseddragon.itch.io/"><img src="assets/games.png"> </a>
</div>
<div class="itemIcon">
<a href="misc.html"><img src="assets/misc.png" title= "Inspirations + Cool Stuff"> </a>
</div>
<div class="itemIcon">
<img src="assets/music.png">
</div>
</div>
<div id="txt">
</div>
<div id="footer">
<img src="./assets/bottombar-2.png">
</div>
<div id="footer-right">
</div>
<div class="spacer">
</div>
</body>
</html>