html-base/index.html

55 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>test</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body class="layout-flex-column">
<header>
<nav class="layout-viewport layout-flex-row">
<a href="#">lgv5</a>
<a href="#">links</a>
<a href="#">left</a>
<span class="layout-flex-item-fullsize"><!-- spacer --></span>
<a href="#">and</a>
<a href="#">right</a>
</nav>
</header>
<main class="layout-flex-item-fullsize layout-flex-column">
<div class="layout-viewport layout-flex-item-fullsize layout-flex-column">
<h1>Main title</h1>
<h2>Demo</h2>
<h3>Paragraph</h3>
<p>some text</p>
<h3>Definition list</h3>
<dl>
<dt>term</dt>
<dd>one definition</dd>
<dd>another definition</dd>
<dt>another term</dt>
<dd>its only definition</dd>
</dl>
<h3>Unordered list</h3>
<ul>
<li>some</li>
<li>item</li>
</ul>
<p>it's full-height!</p>
</div>
</main>
<footer>
<p class="layout-viewport text-center">
Powered by <a href="//www.openbsd.org/">OpenBSD</a> /
<a href="//www.haproxy.org/">HAProxy</a>.
</p>
</footer>
</body>
</html>