-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframe-button.html
More file actions
29 lines (29 loc) · 1.29 KB
/
frame-button.html
File metadata and controls
29 lines (29 loc) · 1.29 KB
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
<!DOCTYPE html>
<html lang="en" style="min-width: auto">
<head>
<meta charset="utf-8"/>
<title>Frame with button Page</title>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="width=device-width" name="viewport"/>
<link href="bootstrap/css/bootstrap-4.3.min.css" rel="stylesheet"/>
<link href="css/uui-all.css" rel="stylesheet"/>
<!-- <link href="css/custom-styles.css" rel="stylesheet"/>-->
<link href="fonts/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="css/lib/components/datepicker3.css" rel="stylesheet"/>
<link href="css/lib/components/jquery.mCustomScrollbar.css" rel="stylesheet"/>
<link href="css/lib/components/scrollspy.css" rel="stylesheet"/>
<link href="jquery-ui/css/smoothness/jquery-ui-1.10.4.custom.min.css" rel="stylesheet"/>
<link href="css/fix-bootstrap4.3.css" rel="stylesheet"/>
</head>
<body>
<span id="button-frame">
<div class="card mb-2">
<div class="card-body">
<h5 class="card-title">Frame card Title</h5>
<p class="card-text">Frame card text</p>
<input class="btn btn-info" id="frame-button" type="button" value="Frame Button">
</div>
</div>
</span>
</body>
</html>