-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathblanka.html
48 lines (28 loc) · 830 Bytes
/
blanka.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>
____Title____
</title>
<meta name="description" content="____Description____">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.documentElement.className =
document.documentElement.className.replace("no-js","js");
</script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="#main">skip to main content</a>
<div class="container">
<main id="main" role="main" class="content">
<h1>
Hello, I'm Blanka!<br>
Minimal HTML boilerplate.
</h1>
</main><!-- /.content -->
</div><!-- /.container -->
<script src="js/script.js"></script>
</body>
</html>