pushy push

This commit is contained in:
Boof 2022-12-19 10:07:32 +01:00 committed by GitHub
parent 3920691481
commit 45892bc2e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 66 additions and 1 deletions

23
index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" Type="text/css" media="all">
<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>Portfolio</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
</head>
<body>
<button class="projectbutton" style="background-color: black; color: white;">
<a href="http://www.example.com/page2" style="color: white; text-decoration: none;">
Click me to go to page 2
</a>
</button>
<h1>Hello there, welcome to my portfolio!</h1>
<p>jeg er veldig kul og er ganske kul. veldig kul faktisk. <br>
Og jeg selger kjempe kule klær <a href="http://merch.streamelements.com/tomotowlive">her!</a><br>
Jeg har tar også kule bilder som du kan finne <a href="http://t0m0t0w.github.io/portfolio">her.</a><br>
Meg har lagd <a href="https://t0m0t0w.github.io/krydderthegame">verdens beste spill.</a></p>
</body>
</html>

43
style.css Normal file
View File

@ -0,0 +1,43 @@
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
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;
}
.projectbutton {
position: fixed;
top: 0;
left: 0;
}

1
tprm
View File

@ -1 +0,0 @@