brutcss/h/example2.html
Yann Esposito (Yogsototh) e84e639183
First commit
2022-09-25 12:57:40 +02:00

84 lines
2.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="entireframework.min.css" rel="stylesheet" type="text/css">
<style>body { font-family: monospace; }</style>
<title>Your Page Title</title>
</head>
<body>
<nav class="nav" tabindex="-1" onclick="this.focus()">
<div class="container">
<a class="pagename current" href="#">Your Site Name</a>
<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">
<div class="hero">
<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>
<p>You can view the source of this page and copy it to get a quick start on a project with Min!</p>
<a class="btn btn-b" href="#">Go places!</a>
</div>
<div class="row">
<div class="col block">
<h3>Yay headings!</h3>
You can view the source of this page and copy it to get a quick start on a project with Min!
<br>
<a href="#" class="btn btn-sm btn-a">
Do stuff!
</a>
</div>
<div class="col block">
<h3>Yay headings!</h3>
You can view the source of this page and copy it to get a quick start on a project with Min!
<br>
<a href="#" class="btn btn-sm btn-b">
Do stuff!
</a>
</div>
<div class="col block">
<h3>Yay headings!</h3>
You can view the source of this page and copy it to get a quick start on a project with Min!
<br>
<a href="#" class="btn btn-sm btn-c">
Do stuff!
</a>
</div>
</div>
<div class="row">
<div class="col c4 card">
<h3>Yay headings!</h3>
You can view the source of this page and copy it to get a quick start on a project with Min!
<br>
<a href="#" class="btn btn-sm">
Do stuff!
</a>
</div>
<div class="col c4 card">
<h3>Yay headings!</h3>
<div class="block">
Something.
</div>
<br>
<a href="#" class="btn btn-sm btn-b">
Do stuff!
</a>
</div>
<div class="col c4 card">
<h3>Yay headings!</h3>
You can view the source of this page and copy it to get a quick start on a project with Min!
<br>
<a href="#" class="btn btn-sm btn-c">
Do stuff!
</a>
</div>
</div>
</div>
</body>
</html>