Added an image page

This commit is contained in:
2024-04-24 18:50:13 +01:00
parent 836f728581
commit c48240f940
2 changed files with 40 additions and 0 deletions

36
imgs.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link href="index.css" rel="stylesheet">
<title>imgs</title>
</head>
<body>
<header>
<img src="https://chopster44.com/img/pfp-transparent.png" width="141">
<div id="menu">
<h1>Chopster44</h1>
<a href="/#about">[About]</a>
<a href="/blog">[Blog]</a>
<a href="/projects">[Projects]</a>
<a href="/rockets">[Rockets]</a>
<a href="/linux">[Linux]</a>
</div>
</header>
<main>
<h2>imgs</h2>
<p>A list of all the images/media I use here and where it came from.</p>
<div id="pfp" class="srcItem">
<img src="img/pfp-transparent.png" width="141" alt="profile picture">
<p>Modified version of some art I found which I've been using as my profile picture. <br>
I have tried to find the original artist but the only place I have ever found it is
<a href="https://www.reddit.com/r/girlsfrontline/comments/dgwqcd/intervenchan/">[this reddit post]</a></p>
</div>
</main>
<footer>
<p>&#169; chopster44</p>
</footer>
</body>
</html>

View File

@@ -29,3 +29,7 @@ sub {
.blogItem {
padding-left: 5%;
}
.srcItem {
display: flex;
}