-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (118 loc) · 4.1 KB
/
index.html
File metadata and controls
130 lines (118 loc) · 4.1 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
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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<head>
<style>
body {
height: 100%;
padding: 0 70px 0 0;
margin: 0;
color: #cba6f7;
background-color: #11111b;
}
/* Heading CSS */
.heading_container {
display: flex;
align-items: center;
margin-top: 20px;
font-family: 'Corbel', serif;
}
.heading {
color: #cba6f7;
font-size: 32px;
margin: 0;
}
.pfp_image {
margin-left: 20px;
margin-right: 25px;
margin-top: 10px;
border-radius: 40%;
}
@font-face {
font-family: 'Corbel';
src: url(corbel.ttf);
}
/* Body CSS */
.body_container {
display: grid;
margin-top: 50px;
margin-left: 50px;
color: #eff1f5;
font-size: 20px;
font-family: 'Corbel', 'serif';
}
.project_image {
margin: 20px 25px 25px 20px;
border-radius: 10%;
}
.social_links {
position: fixed;
bottom: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 20px 10px 10px;
font-size: 20px;
}
.social_links a {
margin: 0 10px;
font-size: 24px;
text-decoration: none;
}
</style>
<script>
window.va = window.va || function () {
(window.vaq = window.vaq || []).push(arguments);
};
</script>
<script defer src="/_vercel/insights/script.js"></script>
<div class="heading_container">
<img class="pfp_image" src="pfp.jpg" alt="Noololly's profile picture" height="50px"/>
<p class="heading">Welcome to Noololly's site</p>
</div>
<title>Welcome to Noololly's site!</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
</head>
<body>
<div class="body_container">
<span style="white-space: pre-line">Hello! Welcome to my website. I have no clue what you are doing here, unless I have given you my URL for some reason or another.
All are welcome here, so feel free to make yourself comfortable in my 2 webpages
</span>
<img class="project_image" src="uno_card.png" alt="Image of an Uno card" height="229">
<a href="https://github.com/Noololly/uno/">This is the Uno project I made</a>
</div>
<footer style="
position: fixed;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 20px 10px 10px;
font-size: 20px">
<div id="webring-wrapper" style="padding-left: 20px; padding-right: 20px;">
<a href="https://webring.hackclub.com/" id="previousBtn" class="webring-anchor" title="Previous">‹</a>
<a href="https://webring.hackclub.com/" class="webring-logo" title="Hack Club Webring"></a>
<a href="https://webring.hackclub.com/" id="nextBtn" class="webring-anchor" title="Next">›</a>
<script src="https://webring.hackclub.com/embed.min.js"></script>
</div>
<a href="https://ctp-webr.ing/noololly/previous"
style="margin: 0 10px; font-size: 24px; text-decoration: none;">←</a>
<a href="https://ctp-webr.ing/" style="margin: 0 10px;">
<img src="catppuccin.png" alt="Catppuccin logo" height="20" style="border-radius: 50%;">
</a>
<a href="https://ctp-webr.ing/noololly/next" style="margin: 0 10px; font-size: 24px; text-decoration: none;">→</a>
<div class="social_links">
<a href="https://bsky.app/profile/noololly.studio">
<img src="Bluesky_Logo.svg" height="20" alt="Bluesky logo">
</a>
<a rel="me" href="https://mastodonapp.uk/@noololly">
<img src="Mastodon.svg" height="20" alt="Mastodon logo">
</a>
<a href=https://www.linkedin.com/in/olly-de-georgio-158608288/">
<img src="LinkedIn_Logo.png" height="20" alt="LinkedIn logo">
</a>
</div>
</footer>
</body>
</html>