-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
173 lines (82 loc) · 2.24 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<title>Home</title>
</head>
<body>
<header>
<h1>Ax0rz0's Home</h1>
<nav>
<ul>
<li><a href="https://github.com/ax0rz0" target="_blank" rel="noopener noreferrer">GitHub</a></li>
<li><a href="sm64browser.html">SM64 Browser</a></li>
<li><a href="hl1browser.html">Hl1 Browser (WIP)</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<h2>Hello! 👋</h2>
<h3>Ax0rz0's <strong>VERY</strong> W.I.P Home site.</h3>
<a href="dmca.html">Contact me DMCA</a>
<br>
<br>
<h4></h4>
</main>
</body>
</html>
<!-- actual site DO NOT DELETE 💀 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Screen</title>
<style>
/* Style for the container div */
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
/* Style for each box */
.box {
width: 150px;
height: 150px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* Style for the image inside the box */
.box img {
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
</head>
<body>
<div class="container">
<a href="hl1browser.html" class="box">
<img src="hl1.png" alt="hl1">
</a>
<a href="sm64browser.html" class="box">
<img src="sm64logo.png" alt="Image 2">
</a>
<a href="link3.html" class="box">
<img src="image.jpg" alt="Extra">
</a>
<!-- Add more links as needed -->
</div>
</body>
</html>
<!-- footer for info etc -->
<footer class="footer">
<div class="container">
<p>© 2024 Ax0rz0, This site is not affiliated with Nintendo or Valve Software in any way. | <a href="https://github.com/ax0rz0/home/blob/main/LICENSE">Licensed under Apache 2.0 (Click for info)</a></p>
</div>
</footer>