Omnibus commited on
Commit
b6faec5
·
verified ·
1 Parent(s): ff49273

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +15 -5
index.html CHANGED
@@ -8,17 +8,27 @@
8
 
9
  <style>
10
  .chart{
11
- background:blue;
12
- }
 
 
 
13
  </style>
14
  </head>
15
  <body>
16
  <div class="chart">
17
  <pre id = "test1" class="mermaid">
18
  graph TD
19
- A[Start] --> B[Task 1]
20
- B --> C[Task 8]
21
- C --> D[End]
 
 
 
 
 
 
 
22
  </pre>
23
  </div>
24
 
 
8
 
9
  <style>
10
  .chart{
11
+ align-content: center;
12
+ display: flex;
13
+ flex-direction: column;
14
+ align-items: center;
15
+ }
16
  </style>
17
  </head>
18
  <body>
19
  <div class="chart">
20
  <pre id = "test1" class="mermaid">
21
  graph TD
22
+ A[Start]
23
+ B[Input User Request]
24
+ C[Generate Mermaid Graph]
25
+ D[Present Mermaid Graph]
26
+ E[End]
27
+
28
+ A --> B
29
+ B --> C
30
+ C --> D
31
+ D --> E
32
  </pre>
33
  </div>
34