-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.72 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
<html>
<head>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link href="../styles/sul.css" rel="stylesheet" />
</head>
<body class="p-4">
<h1>Selected Item</h1>
<ul class="list-unstyled">
<li class="d-inline-flex gap-2 align-items-center my-2">
<span class="bg-light badge rounded-pill border selected-item">
<span class="selected-item-label">Pill Label</span>
<button
type="button"
class="btn-close"
aria-label="Remove XXXXXXX"
></button>
</span>
</li>
<li class="d-inline-flex gap-2 align-items-center my-2">
<span class="bg-light badge rounded-pill border selected-item">
<span class="selected-item-label"> Pill Label 2 </span>
<button
type="button"
class="btn-close"
aria-label="Remove XXXXXXX"
></button>
</span>
</li>
</ul>
<h2>Selected Item HTML</h2>
<pre><code class="d-block" style="white-space: pre-wrap; background-color: lightgray;">
<ul class="list-unstyled">
<li class="d-inline-flex gap-2 align-items-center my-2">
<span class="bg-light badge rounded-pill border selected-item">
<span class="selected-item-label">
Pill Label
</span>
<button type="button" class="btn-close" aria-label="Remove XXXXXX"></button>
</span>
</li>
</ul>
</code></pre>
</body>
</html>