-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (30 loc) · 1.29 KB
/
index.html
File metadata and controls
38 lines (30 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
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>maxcoredev</title>
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/global.css'>
<link rel='stylesheet' href='/buttons.css'>
<link rel='stylesheet' href='/build/bundle.css'>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<script defer src='/build/bundle.js'></script>
<link href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.2.0/build/styles/github.min.css" rel="stylesheet" >
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.2.0/build/highlight.min.js"></script>
<script src="/libs/populate.js"></script>
<script src="/libs/populate-example.js"></script>
<link rel='stylesheet' href='/libs/select.css'>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="/libs/select.js"></script>
<script>
function select() {
$('[name="a"]').select();
$('[name="b"]').select({search: false});
$('[name="c"]').select({placeholder: 'Choose countries'});
}
</script>
</head>
<body>
</body>
</html>