web/public/index.html

71 lines
2.6 KiB
HTML
Raw Normal View History

2024-03-29 16:17:59 +01:00
<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>
<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 do we offer?</h2>
<span>We offer 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 us 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>