-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (97 loc) · 4.02 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<title>Mae's Space</title>
<link rel="icon" href="./resources/images/favicon.png" type="image/x-icon">
<link href="./resources/css/index.css" type="text/css" rel="stylesheet">
<!-- Script keeps track of iFrame data so that you dont lose your spot when refreshing -->
<script src="https://melonking.net/scripts/frame-link.js"></script>
<script>updateTitle = false;</script>
</head>
<body class="index">
<div class="layout">
<div id="header">
<!-- Left Title -->
<div id = "leftTitDiv">
<h3 class = "colTitle">Updates</h3>
</div>
<!-- Marquee -->
<div id="marquee">
<a href="./index.html" id = "marqLink">
<marquee id="marq" scrollamount="2">
<!-- MOTD -->
<strong id="mText">Welcome to Mae's Space! Have a great day!</strong>
</marquee>
</a>
</div>
<!-- Right Title -->
<div id = "rightTitDiv">
<h3 class = "colTitle">Explore</h3>
</div>
</div>
<!-- Left Column -->
<div id="left">
<h3>Status</h3>
<a href="https://www.imood.com/users/mgwatkins2" target="_blank">
<img src="https://moods.imood.com/display/uname-mgwatkins2/fg-57644/trans-1/imood.gif" alt="The current mood of mgwatkins2 at www.imood.com" style="height: 30px; width: auto; max-width:162px;">
</a>
<p id="stat">Currently under construction! Come back soon!</p>
<img src="./resources/images/constr1.gif" alt="A construction worker gif" style="border-style:dotted; border-color:var(--text)">
<img id="online-img" alt="Mae is Online!" src="./resources/images/online.gif">
<img id="offline-img" alt="Mae is Offline!" src="./resources/images/offline.gif">
</div>
<!-- Center Panel -->
<div id="center">
<iframe src="./pages/home.html" width="625" height="500" name="frame" id="mainframe" style="border: 0"></iframe>
</div>
<!-- Right Column -->
<div id="right">
<nav>
<h3 class="navTitle">My Stuff!</h3>
<ul>
<li>
<img src="./resources/images/icons/home.gif" alt="home icon" class="icon">
<a href="./pages/home.html" target="frame">Home</a>
</li>
<li>
<img src="./resources/images/icons/about.gif" alt="about icon" class="icon">
<a href="./pages/about.html" target="frame">About</a>
</li>
<li>
<img src="./resources/images/icons/art.png" alt="art icon" class="icon">
<a href="./pages/art.html" target="frame">Art</a>
</li>
<li>
<img src="./resources/images/icons/music.png" alt="music icon" class="icon">
<a href="./pages/music.html" target="frame">Music</a>
</li>
<li>
<img src="./resources/images/icons/library.png" alt="library icon" class="icon">
<a href="./pages/library.html" target="frame">Library</a>
</li>
</ul>
<h3 class="navTitle">Fun Things!</h3>
<ul>
<li>
<img src="./resources/images/icons/friends.gif" alt="friends icon" class="icon">
<a href="./pages/friends.html" target="frame">My Friends</a>
</li>
<li>
<img src="./resources/images/icons/gifs.gif" alt="gifs icon" class="icon">
<a href="./pages/gifs.html" target="frame">Gifs</a>
</li>
</ul>
</nav>
</div>
<!-- Footer -->
<div id="footer">
<a href="https://m0thgvts.github.io/" target="_blank" id="leftLink"></a>
<a href="./index.html" id = "fLink">
<h3 id = "ringText">♥ Mae's Space ♥</h3>
</a>
</div>
</div>
<script src="./resources/js/discStatus.js"></script>
</body>
</html>