-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathui-buttons.html
30 lines (25 loc) · 912 Bytes
/
ui-buttons.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
<!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">
<title>Dumbo Dashboard - Buttons</title>
<!-- favion -->
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/">
<!-- include bootstrap css -->
<link media="all" rel="stylesheet" href="assets/vendors/bootstrap/css/bootstrap.min.css">
<!-- include main css -->
<link media="all" rel="stylesheet" href="assets/css/main.css">
<!-- include font css -->
<link media="all" rel="stylesheet" href="assets/fonts/font.css">
</head>
<body>
<div class="container">
<div class="col-md-6 p-5">
<button type="button" class="btn dumbo-btn primary-green-bg">Active</button>
</div>
<div class="col-md-6"></div>
</div>
</body>
</html>