-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
37 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<title>Web Platform Zoo</title>
<link rel="stylesheet" href="./classless.css">
<script type="module" src="./render-index.js"></script>
</head>
<body>
<nav>
<ul>
<li><a href="#examples">Examples</a></li>
<li><a href="https://github.com/adobe/web-platform-zoo">GitHub repository</a></li>
</ul>
</nav>
<h1>Web Platform Zoo</h1>
<p>
A collection of <a href="#examples">code examples</a> meant to promote and explain the Web Platform to developers,
currently maintained by <a href="https://grep.codeconsult.ch/about-me">Bertrand Delacretaz</a>
as part of a push to promote and explain the Web Platform to
<a href="https://adobe.com/aem">Adobe Experience Manager</a> developers.
</p>
Source code including automated tests can be found at
<a href="https://github.com/adobe/web-platform-zoo">https://github.com/adobe/web-platform-zoo</a>
</p>
<section>
<h2>Examples</h2>
<div id="examples" />
</section>
</body>
</html>