-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfriendsites.html
More file actions
103 lines (99 loc) · 4.21 KB
/
friendsites.html
File metadata and controls
103 lines (99 loc) · 4.21 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Fakemon's Website | Friendsites</title>
<script src="UniversalElements.js">
// Script for automatically filling element data across pages (this is an anti-React household)
</script>
</head>
<body>
<div class="main">
<div class="navbar">
<!--UniversalElements.js or something idk and idc atp-->
</div>
<img
src="https://uploads.scratch.mit.edu/get_image/user/117698316_99x99.png"
class="pfp"
/>
<h1>Friendsites</h1>
Sure, you saw <i>my</i> site, but what about everyone else's?
<br />
<div id="friendsites">
<a
href="https://31parkjuliantehcoder.github.io/"
id="31sWebsite"
style="
color: #7f94fd;
text-decoration: none;
font-weight: bold;
background-color: #ffffff00;
border-radius: 100px;
justify-content: center;
padding: 10px 5px;
display: block;
align-items: center; /* Aligns icons with text */
gap: 5px; /* Spacing between icon and text */
text-decoration: none;
transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);
"
onmouseover="
const thislink = document.getElementById('31sWebsite')
thislink.style = `color: #00ff00; display: block; text-decoration: underline; font-weight: bolder; background-color: #005500; padding: 10px 15px; transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95); font-size-adjust: 10px;`"
onmouseout="
const thislink = document.getElementById('31sWebsite')
thislink.style = `color: #7f94fd; text-decoration: none; font-weight: bold; background-color: #ffffff00; border-radius: 100px; justify-content: center; padding: 10px 5px; display: block; align-items: center; gap: 5px; text-decoration: none; transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);`
"
>
<img
style="width: 25px; border-radius: 25px"
src="https://uploads.scratch.mit.edu/get_image/user/52623893_128x128.png"
class="pfp"
/>31parkjulian's Website<br />
<small><i>Better than me at everything</i></small>
</a>
<a
href="https://whirling.infernity.dev/
"
id="whirlsWebsite"
style="
color: #7f94fd;
text-decoration: none;
font-weight: bold;
background-color: #ffffff00;
border-radius: 100px;
justify-content: center;
padding: 10px 5px;
display: block;
align-items: center; /* Aligns icons with text */
gap: 5px; /* Spacing between icon and text */
text-decoration: none;
transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);
"
onmouseover="
const thislink = document.getElementById('whirlsWebsite')
thislink.style = `color: hsl(178.97, 100%, 43.94%); display: block; text-decoration: underline; font-weight: bolder; background-color: hsl(178.97, 100%, 23.94%); padding: 10px 15px; transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95); font-size-adjust: 10px;`"
onmouseout="
const thislink = document.getElementById('whirlsWebsite')
thislink.style = `color: #7f94fd; text-decoration: none; font-weight: bold; background-color: #ffffff00; border-radius: 100px; justify-content: center; padding: 10px 5px; display: block; align-items: center; gap: 5px; text-decoration: none; transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);`
"
>
<img
style="width: 25px; border-radius: 25px"
src="https://whirling.infernity.dev/favicon.ico"
class="pfp"
/>Whirling's Website<br />
<small
><i
>Neat little projects like an HTML BFDIA 5a TAS</i
></small
>
</a>
</div>
<hr class="but" />
<div class="links">
<!--these elements rlly r universal if u catch my drift-->
</div>
</div>
</body>
</html>