-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (45 loc) · 2.1 KB
/
index.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
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>State of HTML Examples</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/9000.0.1/themes/prism-dark.css"
integrity="sha512-h553W5EVLDpBoFaI7b6T8EdE71vb1ave8A8eH2KAgAF1fwB631hwkMdIkvGbCqw6gus+9rWvLy4RSRxGLviW+w=="
crossorigin="anonymous" referrerpolicy="no-referrer"/>
<link rel="stylesheet" href="./styles/style.css">
<script src="./js/navigation-component.js"></script>
<base href="./">
</head>
<body>
<header>
<navigation-component></navigation-component>
</header>
<main>
<h1>State of HTML Examples</h1>
<div class="content">
<div class="example-description">
<h3>About this Page</h3>
<p>This page contains examples to the Techkafi "State of Html"
<h3>Demo page structure</h3>
<p>This part of each page shows some interactive stuff.
On the right side, you can see the relevant source snippets.</p>
<h3>Slides</h3>
<p>The slides are also available: <a href="https://mburri.github.io/techkafi-state-of-html-examples/slides/state-of-html.sozi.html" target="_blank">https://mburri.github.io/techkafi-state-of-html-examples/slides/state-of-html.sozi.html</a></p>
</div>
<code class="language-javascript">
<div class="example-description">
<h3>About this Page</h3>
<p>This page contains examples to the Techkafi "State of Html"
<h3>Demo page structure</h3>
<p>This part of each page shows some interactive stuff.
On the right side, you can see the relevant source snippets.</p>
</div>
</code>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/9000.0.1/prism.min.js"
integrity="sha512-UOoJElONeUNzQbbKQbjldDf9MwOHqxNz49NNJJ1d90yp+X9edsHyJoAs6O4K19CZGaIdjI5ohK+O2y5lBTW6uQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
</html>