-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.77 KB
/
index.html
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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="vega_lite_vis.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/build/pure-min.css"
integrity="sha384-X38yfunGUhNzHpBaEBsWLO+A0HDYOQi8ufWDkZ0k9e0eXz/tH3II7uKZ9msv++Ls" crossorigin="anonymous">
<title>First vega-lite graph </title>
<style>
.subheading {
font-weight: bold;
}
.desc {
color: grey;
}
.highlighted_text{
font-weight: bold;
color:red;
}
.vega-bind{
font-family: fantasy;
color: red;
}
</style>
</head>
<body>
<h1>First vega-lite graph</h1>
<p>This chart shows population ...</p>
<div class="pure-g">
<div class="pure-u-2-3">
<div class="subheading"><span class="highlighted_text">Covid</span> Cases per </div>
<div class="desc">dfs kdjfhskdhfskdhf skdhf skdhfsd fsdf</div>
</div>
<div class="pure-u-1-3" id="firstchart">chart</div>
<div class="pure-u-1-3">Text</div>
<div class="pure-u-1-3" id="secondchart">chart</div>
<div class="pure-u-1-3" id="thirdchart">chart</div>
<div class="pure-u-2-3" id="fourthchart">Chart</div>
<div class="pure-u-1-3">text dslf h ds;of <span class="highlighted_text">covid</span> sdf sdkf gskdhf sdf s</div>
</div>
</body>
</html>