-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 2.79 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html lang="ja">
<head>
<script></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://www.kits-tools.net/assets/css/reset.css" />
<link rel="stylesheet" href="https://www.kits-tools.net/assets/css/base.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<link rel="apple-touch-icon" sizes="180x180" href="https://www.kits-tools.net/assets/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="https://www.kits-tools.net/assets/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="https://www.kits-tools.net/assets/favicon/favicon-16x16.png" />
<link rel="manifest" href="https://www.kits-tools.net/assets/favicon/site.webmanifest" />
<link rel="mask-icon" href="https://www.kits-tools.net/assets/favicon/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#3c3c6c" />
<meta name="theme-color" content="#3c3c6c" />
<style>
.content {
margin: 0 20px;
min-height: calc(100vh - 132.5px);
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>メモ帳</title>
</head>
<body>
<nav class="navbar navbar-expand-sm">
<div class="container-fluid">
<a class="navbar-brand white" href="index.html">
<img src="https://www.kits-tools.net/assets/images/logo.svg" width="32px" />
</a>
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active white" aria-current="page" href="https://www.kits-tools.net/index.html">ホーム</a>
</li>
<li class="nav-item">
<a class="nav-link white" href="https://www.kits-tools.net/about.html">KITsとは?</a>
</li>
<li class="nav-item">
<a class="nav-link white" href="https://www.kits-tools.net/links.html">リンク集</a>
</li>
<li class="nav-item">
<a class="nav-link white" href="https://blog.kits-tools.net/">開発者ブログ・使い方など</a>
</li>
</ul>
</div>
</nav>
<div id="root" class="content"></div>
<script type="module" src="./main.tsx"></script>
<footer>
<p>© 2024 Kaisei Information Technologies</p>
</footer>
</body>
</html>