-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit bc385e4
Showing
4 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log("Hello, World!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |