-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (51 loc) · 1.53 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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NibbleJS</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.main {
padding: 1rem;
border: 1px solid #FFBF00;
border-radius: 1rem;
}
</style>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/picocss/2.0.6/pico.amber.min.css'
integrity='sha512-kvYLueAc7RD0XOfxhjiaUKbXBmh5JTZdyJo/12oY/zpT0l6o82H2Ap5f27CrAa16VgvXj02Rsb0Prwtq7oYOSw=='
crossorigin='anonymous' />
</head>
<body>
<!-- Signals Only with Nibble DOM -->
<!-- bind:value|text|html|property, class:, this, if -->
<div class="main border">
<div>
<h1>Nibble JS Examples</h1>
</div>
<p>
<ul>
<li>
<a href="signal.html">Signal Only</a>
</li>
<li>
<a href="dom.html">DOM Example</a>
</li>
</ul>
</p>
<p>
<a href="https://github.com/nabeelalihashmi/nibble">GitHub Repo</a>
</p>
<p>
<small>
Created by Nabeel Ali - <a href="https://linkedin.com/in/nabeelalihashmi">linkedin.com/in/nabeelalihashmi</a>
</small>
</p>
</div>
</body>
</html>