generated from elmsln/project-two
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
53 lines (49 loc) · 1.12 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, viewport-fit=cover" />
<meta name="Description" content="Put your description here.">
<base href="/">
<style>
html,
body {
margin: 0;
padding: 50px;
font-family: sans-serif;
}
.wrapper {
margin: 100px;
}
.menu {
display: flex;
justify-content: space-evenly;
}
.menu li {
display: inline-flex;
font-weight: bold;
padding: 40px;
}
.joyful {
font-size: 2em;
}
</style>
<title>Project 3: HAXTheWeb</title>
</head>
<body>
<ul class="menu">
<li><a href="#">Rename demo</a></li>
<li><a href="/hax.html">HAX, card demo</a></li>
</ul>
<div class="wrapper">
<rename-me need="joy">Some inner text that will render out</rename-me>
<word-count>
<rename-me need="nothing"><div>You feel much shame.</div></rename-me>
</word-count>
</div>
<script type="module">
import "./rename-me.js";
import "@lrnwebcomponents/word-count/word-count.js";
</script>
</body>
</html>