Closing tags which don't have an end tag provides more correctness for XML and XHTML tools, and is not against HTML standards despite closing such tags not being mandatory in HTML.
33 lines
993 B
HTML
33 lines
993 B
HTML
<!DOCTYPE html>
|
|
|
|
<!-- Inferencium - Website - Index -->
|
|
|
|
<!-- Copyright 2022 Jake Winters -->
|
|
<!-- SPDX-License-Identifier: BSD-3-Clause -->
|
|
|
|
<!-- Version: 3.0.1-alpha.5 -->
|
|
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Inferencium</title>
|
|
<link rel="stylesheet" href="main.css"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
</head>
|
|
<!-- Navigation bar -->
|
|
<nav>
|
|
<div><a href="index.html"><img src="asset/img/logo-inferencium-no_text.png" width="110px" height="110px"/></a></div>
|
|
<div><a href="index.html" class="title">Inferencium</a></div>
|
|
<div><a href="about.html">About</a></div>
|
|
<div><a href="contact.html">Contact</a></div>
|
|
<div><a href="blog.html">Blog</a></div>
|
|
<div><a href="documentation.html">Documentation</a></div>
|
|
<div><a href="source.html">Source</a></div>
|
|
<div><a href="key.html">Key</a></div>
|
|
<div><a href="changelog.html">Changelog</a></div>
|
|
</nav>
|
|
<body>
|
|
</body>
|
|
</html>
|