-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (49 loc) · 2.52 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
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Starter Template · Bootstrap</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-dark">
<main role="main" class="container-fluid w-100">
<section class="m-3 p-2">
<h1 class="h3 mb-5 text-center title text-secondary">New Select Boxes</h1>
<div class="row pt-1">
<div class="pb-5 col-6">
<button type="button" class="btn btn-sm btn-outline-secondary dropdown dropdown-toggle" data-toggle="dropdown">Dropdown</button>
<div class="dropdown-menu bs4-drop">
<div class="StayInPlace"><input type="text" placeholder="Search.." id="myInput1"></div>
<div class="bs4-list"></div>
</div>
</div>
<div class="pb-5 col-6">
<div class="d-flex">
<button type="button" class="btn btn-sm dropdown dropdown-toggle btn-secondary MySelectBox" data-toggle="dropdown">MySelectBox</button>
<button class="btn btn-sm btn-secondary ml-n1 mr-n1 ok" name="Edit" type="button"><i class="fa fa-ellipsis-v"></i></button>
<button class="btn btn-sm btn-secondary add" type="button"><i class="text-success fas fa-plus-square"></i></button>
<div class="dropdown-menu MySelect"></div>
</div>
</div>
</div>
</section>
</main>
<!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="myScript.js"></script>
<script>
</script>
</body>
</html>