-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
59 lines (52 loc) · 1.72 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
56
57
58
59
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf8">
<title>Presidential Election Results visualization</title>
<link rel="stylesheet" href="css/master.css" type="text/css" media="screen" title="Master CSS" charset="utf-8">
</head>
<body>
<!-- Importing the .swf -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.1/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
var params = {};
params.allowscriptaccess = "always";
params.allownetworking = "all";
var attributes = {};
attributes.id = "timeline";
swfobject.embedSWF("flash.swf", "flashDiv", "1080", "400", "9.0.0", false, flashvars, params, attributes);
</script>
<div class="wrapper">
<div class="header-bg"></div>
<div id="flashDiv">
<p>This will get replaced with a SWF. If not you need to update your Flash Player.</p>
</div>
<div id="content">
<section class="cf">
<header>
<h2>Les actualités de la periode</h2>
<p>Trier par : <a href="#">Date</a> / <a href="#">Parti</a></p>
</header>
<section id="evenements">
</section>
</section>
<section id="sondages">
<header>
<h2>Sondages</h2>
</header>
<section id="sondage">
</section>
</section>
</div>
</div>
<footer>
<div class="wrapper">
<p style="float:left;">Copyright ©Hetic 2012</p>
<p style="float:right;">Sondages et information CSA controlées</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script src="js/scripts.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>