-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPluginInJquery.html
More file actions
67 lines (67 loc) · 2.18 KB
/
Copy pathPluginInJquery.html
File metadata and controls
67 lines (67 loc) · 2.18 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
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
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="../Plugins/typeahead/typeahead.js"></script>
<title>Plugins in Jquery</title>
<style>
body{
background-color: #303952;
color: #ffffff;
font-size: 1.5em;
}
.jb-width{
background-color: #596275;
height: 320px;
}
.stateOfUsa{
width: 500px;
margin: 0px auto !important;
}
@media(max-width:768px){
.stateOfUsa{
width: 300px;
}
.jb-width{
height: 320px;
}
}
@media(max-width:568px){
.jb-width{
height: 320x;
}
}
</style>
</head>
<body>
<div class="container">
<h1 class="text-white text-center display-4 my-5">Plugins in Jquery</h1>
<div class="jumbotron jb-width">
<div class="row">
<div class="col-md-12">
<div id="the-basics">
<div class="text-center">
<input class="typeahead form-control stateOfUsa" type="text" placeholder="States of USA">
</div>
</div>
</div>
</div>
</div>
</div>
<style>
.tt-menu{
margin-top: 10px;
margin-left: 0px !important;
text-align: left;
}
</style>
<script src="type.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html>