ramik_dev/templates/index.html

67 lines
1.4 KiB
HTML
Raw Normal View History

2024-03-27 16:36:54 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap" rel="stylesheet">
2024-03-27 17:56:29 -04:00
<meta name="keywords" content="Rami Kaldany">
2024-03-27 17:53:39 -04:00
<title>ramik.dev</title>
2024-03-27 16:36:54 -04:00
<style>
* {
margin: 0;
padding: 0;
color: #d3c6aa;
font-family: 'JetBrains Mono', monospace;
}
html, body {
width: 100%;
height: 100%;
}
body {
background: #2d353b;
display: flex;
justify-content: center;
align-items: center;
}
ul {
display: flex;
list-style: none;
}
ul > li {
margin: 5px;
font-size: 15px;
}
#wrapper {
display: flex;
flex-direction: column;
}
</style>
</head>
<body>
<div id="wrapper">
<pre>
_ __ __
_______ ___ _ (_) /__ ___/ /__ _ __
/ __/ _ `/ ' \/ / '_// _ / -_) |/ /
/_/ \_,_/_/_/_/_/_/\_(_)_,_/\__/|___/
</pre>
<ul>
<li>[</li>
2024-03-27 17:46:21 -04:00
<li><a href="#">../</a></li>
2024-03-27 16:36:54 -04:00
<li><a href="#">about</a></li>
2024-03-27 17:46:21 -04:00
<li><a href="/contact">contact</a></li>
2024-03-27 16:36:54 -04:00
<li><a href="https://git.ramik.dev/rami">git</a></li>
<li><a href="/blog">blog</a></li>
<li>]</li>
</ul>
</div>
</body>
</html>