brutcss/h/example.html

27 lines
720 B
HTML
Raw Normal View History

2022-09-25 10:55:47 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-09-25 14:59:23 +00:00
<link href="../brut.min.css" rel="stylesheet" type="text/css">
2022-09-25 10:55:47 +00:00
<title>Your Page Title</title>
</head>
<body>
<nav class="nav" tabindex="-1" onclick="this.focus()">
<div class="container">
2022-09-25 12:08:15 +00:00
<a class="pagename current" href="../index.html">Your Site Name</a>
2022-09-25 10:55:47 +00:00
<a href="#">One</a>
<a href="#">Two</a>
<a href="#">Three</a>
</div>
</nav>
<button class="btn-close btn btn-sm">×</button>
<div class="container">
<h1>Example</h1>
<p>You can view the source of this page and copy it to get a quick start on a project with Min!</p>
</div>
</body>
</html>