-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<title><inline-outline> example page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Prompt&display=swap" rel="stylesheet">
<style>
:root {
}
body {
font-family: Prompt, sans-serif;
font-size: 1.5rem;
color: black;
}
a { color: inherit !important; }
p { max-width: 900px; margin: 1em auto}
h1 { text-align: center; }
section {
max-width: 900px;
margin: 1rem auto;
border-top: 1px solid #ddd;
display: flex;
flex-direction: column;
align-items: center;
}
</style>
<script src="dist/index.iife.js" defer></script>
</head>
<body>
<h1>
<a href="https://github.com/ddamato/inline-outline"><inline-outline/></a>
</h1>
<p>Create and edit a document outline using a web component</p>
<section>
<h2>Use the box below</h2>
<inline-outline>
</inline-outline>
</section>
</body>
</html>