Update index.html
Browse files- index.html +10 -0
index.html
CHANGED
|
@@ -5,8 +5,18 @@
|
|
| 5 |
<meta name="viewport" content="width=device-width" />
|
| 6 |
<title>My static Space</title>
|
| 7 |
<link rel="stylesheet" href="style.css" />
|
|
|
|
|
|
|
| 8 |
</head>
|
| 9 |
<body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
<div class="card">
|
| 11 |
<h1>Welcome to your static Space!</h1>
|
| 12 |
<p>
|
|
|
|
| 5 |
<meta name="viewport" content="width=device-width" />
|
| 6 |
<title>My static Space</title>
|
| 7 |
<link rel="stylesheet" href="style.css" />
|
| 8 |
+
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
| 9 |
+
<script>mermaid.initialize({startOnLoad:true});</script>
|
| 10 |
</head>
|
| 11 |
<body>
|
| 12 |
+
<div class="mermaid">
|
| 13 |
+
graph TD;
|
| 14 |
+
A-->B;
|
| 15 |
+
A-->C;
|
| 16 |
+
B-->D;
|
| 17 |
+
C-->D;
|
| 18 |
+
</div>
|
| 19 |
+
|
| 20 |
<div class="card">
|
| 21 |
<h1>Welcome to your static Space!</h1>
|
| 22 |
<p>
|