-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (117 loc) · 3.93 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
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<!-- Favicon -->
<link rel="icon" href="photos/home.png" type="image/x-icon">
<!-- Your existing styles and other meta tags go here -->
<style>
/* Your CSS styles go here */
body {
font-family: 'Inter', sans-serif;
text-decoration: none;
background: var(--page);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin: 0;
color: #f0f0f0;
}
.title {
font-size: 4vh;
color: var(--title);
text-align: center;
text-transform: uppercase;
border-radius: 0px 0px 5px 5px;
margin-top: 2vh;
margin-bottom: 1vh;
text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 255, 255, 0.8);
font-weight: bold; /* Added to make the letters bold */
}
ul {
list-style-type: none;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 80vh;
overflow-y: auto;
scrollbar-color: var(--text-color) var(--primary-color);
}
ul::-webkit-scrollbar {
width: 8px;
}
ul::-webkit-scrollbar-thumb {
background-color: var(--text-color);
border-radius: 4px;
}
li {
padding: 8px;
font-size: 14px;
background-color: var(--accent-color);
margin: 3px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s ease;
text-align: center;
}
li a {
color: inherit;
text-decoration: none;
}
li:hover {
background-color: var(--hover-color);
}
:root {
--primary-color: #1a1a1a;
--secondary-color: #2c2c2c;
--accent-color: #444;
--text-color: #f0f0f0;
--hover-color: #555;
}
body {
margin: 0;
font-family: 'Roboto', Arial, sans-serif;
position: relative;
background-color: var(--primary-color);
color: var(--text-color);
overflow: hidden;
}
#messageList {
margin-top: 0;
height: 100vh;
}
</style>
</head>
<body>
<!-- Heading -->
<h1 class="title">Sites</h1>
<!-- Container to display messages -->
<ul id="messageList"></ul>
<script>
// JavaScript code to create and display messages
const messages = [
"https://supermathtutor1.vercel.app/g", "https://interstellar-olive.vercel.app", "https://ixlmathwork.netlify.app", "https://learningmath.pages.dev", "https://my-developer-portfolio.pages.dev",
"https://supermathtutor3.vercel.app", "https://staticin.pages.dev/", "https://idontlikespiralytoomanyanime.onrender.com", "", "",
"", "", "", "", "",
"", "", "", "", "",
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "ggs",
];
// Displaying the messages on the webpage
const messageList = document.getElementById('messageList');
messages.forEach(message => {
const listItem = document.createElement('li');
const link = document.createElement('a');
link.href = message;
link.target = "_blank"; // Open link in a new tab
link.textContent = message;
listItem.appendChild(link);
messageList.appendChild(listItem);
});
</script>
</body>
</html>