-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
50 lines (45 loc) · 1.94 KB
/
example.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src='https://code.jquery.com/jquery-2.1.0.js'></script>
<link rel="stylesheet" href="swifty.css">
<!--<link rel="stylesheet" href="https://unpkg.com/[email protected]/swifty.css">-->
<!--<script src="../swifty-js/swifty.js"></script>-->
</head>
<body>
<button class="sw-btn-outline-primary">Outline Primary </button>
<button class="sw-btn-outline-secondary">Outline secondary </button>
<button class="sw-btn-outline-danger">Outline danger </button>
<button class="sw-btn-outline-success">Outline success </button>
<button class="sw-btn-solid-primary"> Primary </button>
<button class="sw-btn-solid-secondary"> secondary </button>
<button class="sw-btn-solid-danger"> danger </button>
<button class="sw-btn-solid-success"> success </button>
<input type="text" class="sw-inp">
<div class="sw-showcase">
<h1 class="head">Hello, world!</h1>
<p class="sub">This is a simple swifty responsive showcase container!</p>
<hr>
<p class="body">It's equivalent to bootstrap's jumbotrons!</p>
<button class="sw-btn-solid-primary">Learn more</button>
</div>
<br><br>
<div class="sw-card">
<img src="https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png" alt="profile image" class="sw-card-image">
<div class="sw-card-body">
<h3 class="sw-card-title">Card title</h3>
<p class="sw-card-text">Some quick example text to build on the card title and make up the bulk of the cards content.</p>
<button class="sw-btn-solid-primary">Go somewhere</button>
</div>
</div>
<div class="sw-alert-primary-md-dismissable">
Hi . You are reading a cool alert .
<div class="sw-alert-dismiss">× <!--{bg_color:'red' , color:'black'}--></div>
</div>
<h4>Hi</h4>
</body>
</html>