-
Notifications
You must be signed in to change notification settings - Fork 0
/
flowchart.htm
49 lines (42 loc) · 1.43 KB
/
flowchart.htm
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
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/[email protected]/dist/mermaid.min.js"></script>
<style type="text/css">
body{
}
</style>
<script>
mermaid.initialize({ startOnLoad: true });
</script>
<title>Patna Tour Guide</title>
</head>
<body>
<div class="mermaid">
graph LR
A([Start]) --> |click| B[Home]
B[Home] -->|click| a[About]
B[Home] -->|click| b[Places]
B[Home] -->|click| c[Restaurants]
B[Home] -->|click| d[Hotels]
a[about] -->|click| 1[Airport]
a[about] -->|click| 2[Bus Stand]
a[about] -->|click| 3[Railway]
b[Places] -->|click| 4[Bihar Museum]
b[Places] -->|click| 5[Planetaurium]
b[Places] -->|click| 6[PnM Mall]
b[Places] -->|click| 7[Buddha Smriti Park]
c[Restaurants] -->|click| 8[17 Degrees]
c[Restaurants] -->|click| 9[CookBook Cafe]
c[Restaurants] -->|click| 10[Pind Balluchi]
c[Restaurants] -->|click| 11[KFC]
d[Hotels] -->|click| 12[Hotel Maurya]
d[Hotels] -->|click| 13[Lemon Tree]
d[Hotels] -->|click| 14[Hotel Patliputra Exotica]
d[Hotels] -->|click| 15[Hotel Chanakya]
d[Hotels] -->|click| 16[Ginger Patna]
</div>
</body>
</html>