Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ttmso authored Jul 19, 2024
0 parents commit bc385e4
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 0 deletions.
Binary file added background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http`-equiv="X-UA-Compatible" content="IE=edge">
<title>My website</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>

<body>
<div class="MainDiv">
<h1>My website</h1>

<h2>Me</h2>
<p>I play games and code things.</p>

<h3>I know these languages</h3>
<li>English</li>
<li>Python</li>
<li>C/C++</li>
<li>Lua/GLua</li>

<h3>And less of these</h3>
<li>Rust</li>
<li>Java</li>
<li>Javascript</li>

<h2>Links</h2>
<a href="" onclick="navigator.clipboard.writeText('question_mark.__'); alert('Copied name!')">My Discord</a>
<a href="https://steamcommunity.com/id/ttmso" target="_blank">My Steam</a>
<a href="https://github.com/ttmso" target="_blank">My Github</a>
</div>

<script src="main.js" async defer></script>
</body>

</html>
1 change: 1 addition & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello, World!")
40 changes: 40 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
body {
background-image: url("background.jpg");
background-size: cover;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: white;
}

.MainDiv {
padding: 16px;
border-radius: 16px;
text-align: left;
background-color: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(5px);
margin-inline: auto;
width: 75%;
}

a:link {
color: rgb(14, 161, 14);
background-color: transparent;
text-decoration: none;
}

a:visited {
color: rgb(14, 161, 14);
background-color: transparent;
text-decoration: none;
}

a:hover {
color: rgb(104, 204, 104);
background-color: transparent;
text-decoration: underline;
}

a:active {
color: rgb(104, 204, 104);
background-color: transparent;
text-decoration: underline;
}

0 comments on commit bc385e4

Please sign in to comment.