-
Notifications
You must be signed in to change notification settings - Fork 0
/
accident.html
112 lines (83 loc) · 2.68 KB
/
accident.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<style>
#menu ul{
list-style: none;
}
#menu ul li{
text-decoration:none;
font:white bold;
background-color : black;
width:150px;
border:1px C6DEFF;
height:70px;
line-height:50px;
text-align:center;
float:left;
font-size:12px;
}
#menu ul li:hover{
background-color:#C0C0C0;
}
#rr{
opacity:0.2;
height:100%;
width:100%;
}
a{
text-decoration:none;
}
</style>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link href="bootstrap.css" rel="stylesheet" media="screen">
<!-- Access the API & Load your JavaScript -->
<!--<script type='text/javascript'
src='http://public.tableau.com/javascripts/api/tableau-2.js'></script>-->
<script type='text/javascript'>
var workbook;
var activeSheet;
window.onload= function() {
// When the webpage has loaded, load the viz
var vizDiv = document.getElementById('myViz');
var vizURL = 'https://public.tableau.com/views/Book2_3635/Accidents?:embed=y&:display_count=yes';
var options = {
width: '1050px',
height: '540px',
hideToolbar: true,
hideTabs: true,
};
var viz = new tableau.Viz(vizDiv, vizURL, options);
};
</script>
</head>
<body>
<IMG STYLE="position:absolute; TOP:35px; LEFT:10px; WIDTH:1800px; HEIGHT:300px" SRC="newcover.jpg">
<div id="menu">
<div style="background-image: url(newcover.jpg); height: 300px; width: 1800px; border: 1px solid black;">:</div>
<ul>
<li><a href="index.php" style="color:white;">HOME </a></li>
<li><a href="accident.html" style="color:white;">ACCIDENT </a></li>
<li><a href="Reason.html" style="color:white;">ACCIDENT CAUSES </a></li>
<li><a href="traffic act.html" style="color:white;">TRAFFIC ACT </a></li>
<li><a href="rentalsetup.html" style="color:white;">RENTAL SETUP </a></li>
<li><a href="Aolp.html" style="color:white;">PHYSICAL ACTIVITY </a></li>
<li><a href="ci.html" style="color:white;">COURSES INTERESTED </a></li>
<li><a href="bs.html" style="color:white;">BIKES STOLEN </a></li>
<li><a href="rm.html" style="color:white;">RIDE MORE IF </a></li>
</ul>
</div>
<div class='container'>
<!--<img id="rr" src="Untitled design.jpg"/> -->
<div class='row'>
<!--<h2 class='span7 pagination-centered'>windsor bike essex community</h2> -->
</div>
<div class='row'>
<ul id = 'menu' class='nav nav-list span2'>
</ul>
<!-- Create an empty div to put the viz -->
<div id='myViz'style="padding-top:40px"></div>
</div>
</div>
</body>
</html>