-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate_6zones.html
37 lines (23 loc) · 1017 Bytes
/
template_6zones.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Visualization Studio HTML template</title>
<link rel="stylesheet" type="text/css" href="css/vizstudio.css"/>
</head>
<body>
<main class="vizstudio">
<div id="zone-1" class="zone zone-1 span-2"></div>
<div id="zone-3" class="zone zone-3 span-2"></div>
<div id="zone-5" class="zone zone-5 span-2"></div>
<div id="zone-7" class="zone zone-7 span-2"></div>
<div id="zone-9" class="zone zone-9 span-2"></div>
<div id="zone-11" class="zone zone-11 span-2"></div>
</main>
<!-- use this javascript to test changes to this template (adds content to make zones visible) -->
<script type="text/javascript" src="js/template_demo.js"></script>
<!-- this Javascript will scale the display down to fit your browser window, very useful for development -->
<script type="text/javascript" src="js/transform_scale.js"></script>
</body>
</html>