Spaces:
Running
Running
Create test.html
Browse files
test.html
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width" />
|
| 6 |
+
<title>My static Space</title>
|
| 7 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
| 8 |
+
|
| 9 |
+
</head>
|
| 10 |
+
<body>
|
| 11 |
+
|
| 12 |
+
<pre id = "test1" class="mermaid">
|
| 13 |
+
graph TD
|
| 14 |
+
A[Start] --> B[Task 1]
|
| 15 |
+
B --> C[Task 8]
|
| 16 |
+
C --> D[End]
|
| 17 |
+
</pre>
|
| 18 |
+
|
| 19 |
+
<script type="module">
|
| 20 |
+
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
|
| 21 |
+
mermaid.initialize({ startOnLoad: true });
|
| 22 |
+
</script>
|
| 23 |
+
</body>
|
| 24 |
+
</html>
|