<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<title>DOTMATRIX</title>
<style>
body {
background-color: #000;
color: #ccc;
font-family: ‘Courier New’, monospace;
margin: 0;
padding: 0;
}
header {
padding: 20px;
text-align: center;
}
.logo {
font-size: 48px;
font-weight: bold;
letter-spacing: 3px;
}
.logo span:nth-child(1) {
color: #00d9ff; /* Blue */
}
.logo span:nth-child(2) {
color: #ff4db8; /* Pink */
}
nav {
text-align: center;
margin-top: 10px;
margin-bottom: 20px;
font-size: 18px;
}
nav a {
color: #ccc;
text-decoration: none;
margin: 0 15px;
}
nav a:hover {
color: #fff;
}
hr {
border: 0;
border-top: 1px solid #555;
margin: 10px auto 20px;
width: 90%;
}
.post {
width: 90%;
max-width: 800px;
margin: 0 auto 40px;
}
.post h2 {
font-size: 32px;
color: #eee;
margin-bottom: 5px;
}
.footer {
text-align: center;
font-size: 16px;
color: #ccc;
margin: 40px auto;
}
</style>
</head>
<body>
<header>
<div class=”logo”>
<span>DOT</span><span>MATRIX</span>
</div>
<nav>
<a href=”/blog”>HOME</a>
<a href=”https://instagram.com/dotmatr1x” target=”_blank”>MIXES</a>
<a href=”https://mixcloud.com/dotmatr1x” target=”_blank”>EVENTS</a>
<a href=”#”> A WEBSITE DESIGNED BY FAT PANDA</a>
<a href=”/contact”>CONTACT</a>
</nav>
<hr>
</header>
<main>
<div class=”post”>
<h2>FIRST POST</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</div>
<hr>
<div class=”post”>
<h2>ANOTHER POST</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</div>
<hr>
<div class=”post”>
<h2>THIRD POST</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</div>
<hr>
</main>
<footer class=”footer”>
TRANSMISSIONS FROM THE UNDERGROUND
</footer>
</body>
</html>