example.html 729 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Your Page Title</title>
  7. <link href="//mincss.com/entireframework.min.css" rel="stylesheet" type="text/css">
  8. </head>
  9. <body>
  10. <nav class="nav" tabindex="-1" onclick="this.focus()">
  11. <div class="container">
  12. <a class="pagename current" href="#">Your Site Name</a>
  13. <a href="#">One</a>
  14. <a href="#">Two</a>
  15. <a href="#">Three</a>
  16. </div>
  17. </nav>
  18. <button class="btn-close btn btn-sm">×</button>
  19. <div class="container">
  20. <h1>Example</h1>
  21. <p>You can view the source of this page and copy it to get a quick start on a project with Min!</p>
  22. </div>
  23. </body>
  24. </html>