Skip to content

Commit 7c2d474

Browse files
committed
add entry point for Static web App
1 parent f89ebb4 commit 7c2d474

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>Cybersecurity for Beginners</title>
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
8+
<meta name="description" content="Description">
9+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
10+
<link rel="icon" type="image/png" href="images/favicon.png">
11+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
12+
</head>
13+
14+
<body>
15+
<div id="app"></div>
16+
<script>
17+
window.$docsify = {
18+
name: 'Cybersecurity for Beginners',
19+
repo: 'https://github.com/microsoft/Security-101',
20+
relativePath: true
21+
}
22+
</script>
23+
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
24+
</body>
25+
26+
</html>

0 commit comments

Comments
 (0)