-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
43 lines (39 loc) · 1.31 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title></title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
/>
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" id="stylesheet"/>
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.html" id="title"></a>
<form class="d-flex input-group w-auto">
<div id="cb"></div>
<input
type="search"
class="form-control rounded"
placeholder="Buscar"
aria-label="Buscar"
id="txtSearch"
/>
</form>
</div>
</nav>
<div class="container-fluid py-2 px-5" id="container"></div>
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>