-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 2.84 KB
/
Copy pathindex.html
File metadata and controls
47 lines (47 loc) · 2.84 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
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="ja-JP" dir="ltr" class="no-js">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/webp" href="/img/favicon32.webp" />
<!-- VitePWA が manifest.webmanifest を自動挿入します -->
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<meta name="description" content="履歴書をブラウザで簡単作成・保存・PDF出力できる無料Webアプリ『ShigotoForm』。オフライン対応・ダークモード・データは端末内に安全保存。" />
<script>
// JavaScript 有効時の判定用: no-js -> js
document.documentElement.classList.replace('no-js', 'js');
</script>
<meta property="og:title" content="履歴書メーカー(無料・PDF出力・オフライン対応) | ShigotoForm" />
<meta property="og:description" content="履歴書をブラウザで簡単作成・保存・PDF出力できる無料Webアプリ『ShigotoForm』。オフライン対応・ダークモード・データは端末内に安全保存。" />
<meta property="og:type" content="webapp" />
<meta property="og:site_name" content="ShigotoForm" />
<meta property="og:url" content="https://shigotoform.netlify.app/" />
<meta property="og:image" content="https://shigotoform.netlify.app/img/favicon64.webp" />
<meta property="og:image:alt" content="ShigotoForm 履歴書メーカーのアイコン" />
<meta property="og:locale" content="ja_JP" />
<title>履歴書メーカー(無料・PDF出力・オフライン対応) | ShigotoForm</title>
<script type="speculationrules">
{
"prerender": [{ "where": { "href_matches": "/*" }, "eagerness": "moderate" }],
"prefetch": [{ "where": { "href_matches": "/*" }, "eagerness": "moderate" }]
}
</script>
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="履歴書メーカー(無料・PDF出力・オフライン対応) | ShigotoForm" />
<meta name="twitter:description" content="履歴書をブラウザで簡単作成・保存・PDF出力できる無料Webアプリ『ShigotoForm』。オフライン対応・ダークモード・データは端末内に安全保存。" />
<meta name="twitter:image" content="https://shigotoform.netlify.app/img/favicon64.webp" />
</head>
<body>
<a href="#main" class="skip-link">本文へスキップ</a>
<noscript>
<div class="no-js-banner" role="alert" aria-live="assertive">
このアプリは JavaScript を必要とします。ブラウザ設定で JavaScript を有効にしてください。
</div>
</noscript>
<div id="app">
<script type="module" src="/src/main.ts"></script>
</div>
</body>
</html>