Files
website/index.html
T
2024-07-26 16:13:26 +05:30

124 lines
3.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="https://ik.imagekit.io/mysticmode/home/favicon.png">
<title>Nirmal Kumar R</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
font-size: 14px;
line-height: 1.4;
max-width: 30em;
}
header {
margin: 1em;
}
nav {
display: flex;
align-items: start;
justify-content: center;
}
nav a {
background-color: #BF1717;
font-family: sans-serif;
color: white;
font-size: 0.8rem;
text-align: center;
text-shadow: 0px 0px 1px #cccccc;
min-width: 70px;
padding: 0.3em 0.5em 0.2em;
text-decoration: none;
box-shadow: 1px 2px 2px #eba2a2 inset;
border-bottom: 4px solid #992727;
border-right: 2px solid #992727;
border-left: 1px solid #992727;
border-top: 1px solid #ac3e3e;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
p {
margin: 1em 0;
}
.home {
margin-top: 1em;
}
.home,
.content-wrapper {
margin-left: 1em;
}
.home img {
display: block;
}
.content-title {
color: #663333;
font-weight: bold;
margin-left: 1em;
}
.contact {
background-color: #ffcc33;
padding: 0.6em;
font-size: 0.8rem;
}
footer {
color: #cccccc;
margin: 3em 0 3em 1em;
font-size: 0.8rem;
}
footer hr {
margin-bottom: 1em;
}
</style>
</head>
<body>
<header>
<div>
<img loading="lazy" src="https://ik.imagekit.io/mysticmode/home/name.png" alt="My Full Name - Nirmal Kumar R" width="400px">
</div>
</header>
<nav>
<a href="/">Home</a>
<a href="/blog">Blog</a>
<a href="/poems">Poems</a>
<a href="https://river.sh">Devlog</a>
<a href="mailto:inbox@nirm.al">Contact</a>
</nav>
<section class="home">
<img loading="lazy" src="https://ik.imagekit.io/mysticmode/home/ashram.jpg" alt="A picture of an ashram garden" width="400px">
</section>
<section class="content-wrapper">
<div class="content">
<p>This is my personal website. A place where you can read all my public musings. Rest of it is my internal flight and experience which I cannot put it into words although I try my best.</p>
<p class="contact">You can connect with me on <a rel="me" href="https://mastodon.social/@tildezero">Mastodon</a> or via <a href="mailto:tildezero@posteo.net">email</a>.
</div>
</section>
<footer>
<hr>
© Nirmal Kumar R. All original text, is licensed under a <a href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. Source code of this website can be found <a href="https://github.com/mysticmode/mysticmode.github.io">here</a>.
</footer>
</body>
</html>