Newer
Older
Website / index.html
@lukas lukas on 6 Jun 2021 1 KB change email
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="author" content="Lukas Eisenhauer">
    <title>Lukas Eisenhauer</title>
    <link href="styles.css" rel="stylesheet">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body onresize="navbarAdjust()" id="body">
<nav id="nav">
    <a href="#home" onclick="onLinkClick();">Home</a>
    <a href="#projects" onclick="onLinkClick();">Projects</a>
    <a href="#impressum" onclick="onLinkClick();">Impressum</a>
</nav>
<section id="home">
    <h1>Lukas Eisenhauer</h1>
    <h2>Developer</h2>
    <address>
        <h3>Email: <a href="mailto:mail@lukas-eisenhauer.de">mail@lukas-eisenhauer.de</a></h3>
    </address>
</section>
<section id="projects">
    <h1>Projects</h1>
    <a href="https://gitlab.bixilon.de/bixilon/minosoft"><h2>Minosoft</h2></a>
    <div class="fixed-bg" style="background-image:url('https://gitlab.bixilon.de/bixilon/minosoft/-/raw/master/doc/img/rendering.png');"></div>
    <p>
        Currently, I am developing the rendering engine for an open source, minecraft compatible third party multiplayer client called Minosoft.
    </p>
</section>
<section id="impressum">
    <h1>Impressum</h1>
    <p>This website is hosted and maintained by Lukas Eisenhauer.</p>
    <p>Address: Kohlr&ouml;schenstra&szlig;e 53 80995 M&uuml;nchen, Deutschland</p>
    <p>You can reach me at:</p>
    <ul>
        <li>Email: <a href="mailto:leisenhau@gmail.com">leisenhau@gmail.com</a></li>
        <li>Phone: +49 89 15001158</li>
    </ul>
</section>
<script src="scripts.js"></script>
</body>
</html>