This commit is contained in:
Boof 2023-05-16 12:26:21 +02:00 committed by GitHub
parent e928b390fd
commit a7f34ba542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 83 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/style.css" type="text/css"
media="all">
<script src="/index.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>herremann er kul hann</title>
<link rel="icon" type="image/x-icon" href="/favicon.png">
</head>
<body>
<h1>hei hei</h1>
<p>jeg er veldig kul og er ganske kul. veldig kul faktisk. <br>
Og jeg selger kjempe kule klær <a
href="https://merch.streamelements.com/tomotowlive">her!</a><br>
Jeg har tar også kule bilder som du kan finne <a
href="portfolio">her.</a><br>
Meg har lagd <a href="krydderthegame">verdens beste spill.</a>
</p>
<div style="display: none;"> <a href="https://boofdev.eu.org/">cool
site</a></div>
</body>
</html>

View File

@ -0,0 +1,4 @@
//Made by boofdev.eu.org ;)
const year = new Date().getFullYear();
document.querySelector('.current-year').innerText = year;

View File

@ -0,0 +1,50 @@
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
.footer {
position: fixed;
background-color: #333333;
color: #ffffff;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
.lineheight1em {
line-height: 1em;
}
body {
background-color: #333333;
color: #ffffff;
}
h1 {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: 48px;
margin: 50px;
padding: 25px;
}
p {
font-family: 'Monstserrat', sans-serif;
margin-top: -50px;
padding-left: 75px;
}
p a:link {
color: lightgray;
}
p a:visited {
color: lightgray;
}
p a:hover {
color: darkgray;
}
p a:active {
color: gray;
}