-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
35 lines (31 loc) · 1.31 KB
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./dist/sitn-bootstrap.css">
<title>Document</title>
</head>
<body>
<header class="navbar sticky-top navbar-expand-lg bg-primary shadow">
<div class="container">
<a class="navbar-brand text-white fw-bold" href="#">SITN</a>
<span class="text-white fw-bold">Démonstration Bootstrap SITN</span>
<a class="btn btn-secondary nav-link p-2" href="https://github.com/sitn/sitn-bootstrap"
target="_blank" rel="noopener">GitHub</a>
</div>
</header>
<div class="container mt-5">
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-link">Link</button>
</div>
</body>
</html>