forked from nebulosus/web
69 lines
No EOL
2.7 KiB
HTML
69 lines
No EOL
2.7 KiB
HTML
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Nebulosus</title>
|
|
|
|
<link rel="stylesheet" href="./res/style.css">
|
|
<script src="./res/cases.js" defer></script>
|
|
<script src="./res/anchors.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<header style="display: flex; justify-content: space-between;">
|
|
<div class="logo">
|
|
<span class="mono">[N]</span>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<section id="intro">
|
|
<h1>Nebulosus</h1>
|
|
</section>
|
|
<div class="columns">
|
|
<div>
|
|
<section id="offer">
|
|
<h2>What does Nebulosus offer?</h2>
|
|
<span>Nebulosus offers a variety of services:</span>
|
|
<ol>
|
|
<li><span>Server Hosting</span></li>
|
|
<li><span>Website / Application Development</span></li>
|
|
<li><span>Technical Support</span></li>
|
|
</ol>
|
|
<button id="cases-button" hidden>Cases</button>
|
|
<div id="cases" hidden></div>
|
|
</section>
|
|
<section id="about">
|
|
<h2>About Nebulosus</h2>
|
|
<p>
|
|
Nebulosus is simplicity, redundancy, reliability and friendliness. <br />
|
|
Software should be intuitive, aware of it's environment. That's what Nebulosus strives for.
|
|
<br />
|
|
If you want simple, intuitive and reliable software, you're in the right spot.
|
|
</p>
|
|
</section>
|
|
</div>
|
|
<section id="contact" hidden>
|
|
<!-- Not done yet :) -->
|
|
<!-- Technical question? dev (at) faulty (dot) nl -->
|
|
<h2>Contact</h2>
|
|
<span>To contact me please use the following form:</span>
|
|
<form action="/api/form">
|
|
<input name="name" type="text" placeholder="Name">
|
|
<input name="email" type="text" placeholder="E-Mail">
|
|
<textarea name="message" rows="5" placeholder="Your message"></textarea>
|
|
<input type="button" value="Submit">
|
|
</form>
|
|
</section>
|
|
</div>
|
|
<section id="more-info">
|
|
<h2>More information about Nebulosus</h2>
|
|
<div class="rows">
|
|
<span>Chamber of Commerce number: <strong>93409583</strong></span>
|
|
<span>E-mail: <strong>info@nebulosus.nl</strong></span>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |