-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommands.html
32 lines (30 loc) · 1.35 KB
/
commands.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
<!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/[email protected]/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://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script async src="./script/google.js"></script>
</head>
<body>
<header-component></header-component>
<navbar-component></navbar-component>
<main>
<commands-component></commands-component>
</main>
<footer-component></footer-component>
</body>
<script>
function showHideRow(row) {
$("#" + row).toggle();
}
</script>
</html>