plasttic-boilerplate
Version:
Plasttic HTML Boilerplate: A complete HTML starter template
89 lines (80 loc) • 2.81 kB
HTML
<!-- Plasttic HTML Boilerplate | MIT License | https://plasttic.dev/ -->
<!--
TODO: language
https://www.w3schools.com/tags/ref_language_codes.asp
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- TODO: (per page) Page title (max: 70 characters) -->
<title>Page Not Found: Plasttic HTML Boilerplate</title>
<!-- No Crawling on 404, Temporary pages and others -->
<meta name="robots" content="nofollow" />
<meta name="googlebot" content="noindex" />
<!-- TODO: Website description (recommended max: 155 characters) -->
<meta
name="description"
content="A professional and extensible HTML5 Boilerplate."
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- TODO: Icons -->
<!--
https://realfavicongenerator.net/
-->
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<!-- TODO: Fonts -->
<!-- 1. Local hosted (preload for @font-face) -->
<link
rel="preload"
href="/fonts/roboto-latin-300-normal.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link
rel="preload"
href="/fonts/roboto-latin-400-normal.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link
rel="preload"
href="/fonts/roboto-latin-500-normal.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<!-- 2. Google Fonts -->
<!--
<link rel="preconnect" href="https://fonts.googleapis.com/">
<link rel="dns-prefetch" href="https://fonts.googleapis.com/">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="dns-prefetch" href="https://fonts.gstatic.com/">
<link rel="preload" as="style"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap">
-->
<!-- TODO: Preconnect to CDNs: JS, CSS, Media, ... -->
<link rel="preconnect" href="https://unpkg.com/" crossorigin />
<link rel="dns-prefetch" href="https://unpkg.com/" />
<link rel="stylesheet" href="https://unpkg.com/plasttic-reset@2.0" />
<link rel="stylesheet" href="/css/styles.css" />
<script src="/js/scripts.js" defer></script>
</head>
<!------------ PAGE START ------------->
<body id="top" class="ptt-page__error">
<div>
<h1>Page Not Found!</h1>
<p>We seem to have misplaced the page you're looking for.</p>
<p>
<!-- TODO: Replace link with the full URL of the homepage -->
<a href="/">Return to homepage</a>
</p>
</div>
<!------------ PAGE END ------------->
</body>
</html>