-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
104 lines (103 loc) · 3.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http`-equiv="X-UA-Compatible" content="IE=edge" />
<title>My website</title>
<link rel="icon" href="assets/icon.png" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="MainDivWrapper">
<div class="BorderDiv"></div>
<div class="BorderDiv2"></div>
<div class="MainDiv">
<h1>Welcome to my website!</h1>
<p>This is my personal website, where I will put stuff I make.</p>
<p>
This website is open source and you can see the code
<a href="https://github.com/ttmso/ttmso-website" target="_blank"
>here</a
>.
</p>
<br />
<h2>Me</h2>
<p>I play games and code things.</p>
<p>Currently learning Japanese. こんにちは!</p>
<br />
<h3>I know these languages</h3>
<span
style="
color: #ffc331;
background: linear-gradient(
in oklab,
#387eb8,
#387eb8,
#366994,
#366994,
#ffe052,
#ffc331,
#ffc331
);
background-clip: text;
-webkit-text-fill-color: transparent;
"
>Python</span
><br />
<span
style="
color: color-mix(in oklab, lightblue 50%, blue 50%);
background: linear-gradient(in oklab, lightblue, blue);
background-clip: text;
-webkit-text-fill-color: transparent;
"
>C/C++</span
><br />
<span style="color: color-mix(in oklab, white 10%, blue 90%)"
>Lua/GLua</span
><br />
<span style="color: white">Brainfuck</span><br />
<span
style="
color: color-mix(in oklab, orange 50%, darkorange 50%);
background: linear-gradient(in oklab, orange, darkorange);
background-clip: text;
-webkit-text-fill-color: transparent;
"
>Rust</span
><br />
<span style="color: coral">Java</span><br />
<span style="color: yellow">Javascript</span><br />
<br />
<h2>Links</h2>
<a
href="https://discordapp.com/users/1095300850987044965"
target="_blank"
>My Discord</a
>
<a href="https://steamcommunity.com/id/ttmso" target="_blank"
>My Steam</a
>
<br />
<a href="https://github.com/ttmso" target="_blank">My GitHub</a>
<a href="https://ttmso.itch.io/" target="_blank">My itch.io</a>
<br />
<br />
<h2>Cool stuff</h2>
<a href="./screensaver/">Screensaver thing</a><br />
<a href="./random_word_generator/">Random word generator</a><br />
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
>Universe simulator</a
><br />
</div>
</div>
</body>
</html>