Add index.html
This commit is contained in:
commit
53c4558db8
2 changed files with 77 additions and 0 deletions
BIN
img/me.jpg
Normal file
BIN
img/me.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 263 KiB |
77
index.html
Normal file
77
index.html
Normal file
|
@ -0,0 +1,77 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>skyizwhite.dev</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100svh;
|
||||
color: #333;
|
||||
}
|
||||
.container {
|
||||
text-align: center;
|
||||
background: #fff;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
max-width: 400px;
|
||||
width: 100%;
|
||||
}
|
||||
.profile-image {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
border: 2px solid #ddd;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
margin: 10px 0;
|
||||
}
|
||||
.subtitle {
|
||||
font-size: 1.2em;
|
||||
margin: 5px 0;
|
||||
color: #555;
|
||||
}
|
||||
.links {
|
||||
margin-top: 15px;
|
||||
}
|
||||
.links a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
color: #007BFF;
|
||||
margin: 5px 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
.links a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<img src="/img/me.jpg" alt="Profile Picture" class="profile-image">
|
||||
<h1>
|
||||
<span>paku</span><!--
|
||||
--><span>@</span><!--
|
||||
--><span>skyizwhite.dev</span>
|
||||
</h1>
|
||||
<p class="subtitle">Web developer</p>
|
||||
<p class="subtitle">Admin of himagine.club</p>
|
||||
<p class="subtitle">Lisp enthusiast</p>
|
||||
|
||||
<div class="links">
|
||||
<a href="https://github.com/skyizwhite" target="_blank">GitHub: @skyizwhite</a>
|
||||
<a href="https://himagine.club/@skyizwhite" target="_blank">Fediverse: @skyizwhite@himagine.club</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue