-
Notifications
You must be signed in to change notification settings - Fork 2
/
dbl.html
31 lines (29 loc) · 1.29 KB
/
dbl.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
<!DOCTYPE html>
<html>
<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://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style/main.css">
<script src="components/header.js" type="text/javascript" defer></script>
<script src="components/navbar.js" type="text/javascript" defer></script>
<script src="components/commands.js" type="text/javascript" defer></script>
<script src="components/footer.js" type="text/javascript" defer></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X40B5DQ6NE"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script async src="./script/google.js"></script>
</head>
<body>
<header-component></header-component>
<main>
<commands-component></commands-component>
</main>
<footer-component></footer-component>
</body>
<script>
function showHideRow(row) {
$("#" + row).toggle();
}
</script>
</html>