console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pixel hacker</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Pixel hacker</h1>
<nav>
<ul>
</ul>
</nav>
</header>
<main>
<h2>About Me</h2>
<p>
Hey there, I'm Tomi from Shanghai. I'm a computer enthusiast and love playing video games, especially shooter games. DIY is also one of my hobbies. I identify as non-binary and leftist.</p>
<h2>My Significant Other</h2>
<p>I'm happily taken by my amazing partner <span class="partner-name"><a href="http://blog.ariax.icu/">まお</a>
</span> who supports me in all my endeavors. Thank you Mao for lending me your domain name. ♥️</p>
<h2>Contact</h2>
<p>Email: <a href="mailto:tomitao0@proton.me">tomitao0@proton.me</a></p>
<p>WeChat & Steam: "You know it"</p>
<p>Discord: chiwa#5166</p>
</main>
<footer>
<p>© 2023 My Personal Website. All rights reserved.</p>
</footer>
</body>
</html>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: #f9ebea;
color: #444444;
}
header, main, footer {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #cfb6b6;
}
h1 {
font-size: 48px;
text-align: center;
margin-bottom: 20px;
}
nav ul {
list-style: none;
display: flex;
justify-content: space-around;
}
nav li {
margin: 0 10px;
}
nav a {
text-decoration: none;
color: #ffffff;
font-size: 24px;
transition: color 0.3s ease-in-out;
}
nav a:hover {
color: #a05858;
}
main h2 {
font-size: 36px;
margin-bottom: 20px;
}
.partner-name {
font-weight: bold;
}
footer {
text-align: center;
background-color: #cfb6b6;
}
a {
color: #808080;
text-decoration: none;
font-family: "Courier New", Times, serif;
font-size: 24px;
}
a:hover {
color: #c0c0c0;
}
@media (max-width: 600px) {
h1 {
font-size: 36px;
}
nav a {
font-size: 20px;
}
main h2 {
font-size: 28px;
}
}