1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os import vizro.models as vm from vizro import Vizro page = vm.Page( title="Changing the header color", components=[ vm.Card( text=""" # This is an <h1> tag ## This is an <h2> tag ###### This is an <h6> tag """) ], ) dashboard = vm.Dashboard(pages=[page]) Vizro().build(dashboard).run()