-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
87 lines (77 loc) · 2.2 KB
/
dashboard.html
File metadata and controls
87 lines (77 loc) · 2.2 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
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
<html>
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/7784/7784482.png">
<title>Dashboard - The HTML Project</title>
<style>
h1 {
color: black;
text-align: center;
}
body {
background: grey;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.textbox {
margin-top: 10px;
margin-bottom: 80px;
margin-right: 80px;
margin-left: 80px;
width: 50%;
padding: 10px;
border: 2px solid white;
color: white;
text-align: center;
}
a {
text-align: right;
}
}
li{
text-align: center;
}
p{
text-align: right;
}
h3{
color: navy;
text-align: center;
}
</style>
<body>
<ul> <a href="index.html" align="right">Sign Out</a>   <a href="javascript:alert('You could have donated to me but I never set it up.');" align="right">DONATE! 💚</a>
<h1><img src="Icon.jpeg" alt="Logo" style="width:120px;height:100px;"> </h1></ul>
<h1>Dashboard</h1>
<br>
<h3>Games</h3>
<div class="textbox">
<strong>Here you can find games.</strong><p> Last updated 11/28/2023</p>
<a href="snake.html">Snake</a>
<br>
<a href="ovo.html">Original OvO Game</a>
<br>
<a href="ovo2.html">Original OvO 2 Game</a>
<br>
<a href="burrito.html">BurritoCraft</a>
<br>
<a href="ats.html">Aim The Square</a>
<br>
</div>
<h3>Utilities</h3>
<div class="textbox">
<strong>Here you can find utilities.</strong><p> Last updated 11/28/2023</p>
<a href="calc.html">Calculator</a>
<br>
<a href="map.html">Map</a>
<br>
<a href="timer.html">Timer</a>
<br>
<a href="dvd.html">DVD Screensaver</a>
<br>
</div>
<br>
<br>
<p>This is the very first release of my website. Click <a href="/home">here</a> for the newest release</p>
</body>
</html>