forked from jfmm/inclusive-web-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml5-template.html
30 lines (24 loc) · 888 Bytes
/
html5-template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- a viewport declaration which does not disable zooming -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- a non-blocking base64-encoded front resource-->
<link rel="stylesheet" href="/css/fonts.css" media="none" onload="if(media!='all')media='all'">
<noscript><link rel="stylesheet" href="/css/styles.css"></noscript>
<link rel="stylesheet" href="/css/print.css" media="print">
<!-- a descriptive label fo the page -->
<title></title>
</head>
<body>
<!-- a handy skip link for keyboard users -->
<a href="#main">skip to main content</a>
<!-- logo / page navigation etc. goes here -->
<main id="main">
<!-- unique content of page goes here -->
</main>
<!-- a non-blocking javascript resource -->
<script src="/js/scripts.js"></script>
</body>
</html>