-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfact.htm
More file actions
59 lines (48 loc) · 2.3 KB
/
fact.htm
File metadata and controls
59 lines (48 loc) · 2.3 KB
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>
<title>Facts Factsheet, by forgesource</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="bootstrap-theme.css">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="fact.js"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Item', 'Units'],
['Made Up on the Spot', 85],
['Not Made Up on the Spot', 100 - 85]
]);
var options = {
title: 'Facts',
is3D: true,
slices: { 0: {offset: 0.2},
},
};
var chart = new google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
</script>
</head>
<body>
<h1>A Statistical Survey of the Frequency of Facts which are Made Up on the Spot</h1>
<p>85 of every 100 Facts are Made Up on the Spot</p>
<div class="pull-left">
<div id="piechart" style="width: 500px; height: 400px" class="thumbnail"></div>
<div style="padding:0px 30px" class="caption">
<h3 style="padding:0px">Caption Title</h3>
<p class="small"><Some>text in the caption</Some></p>
</div></div>
<h2>1. Poststructuralist construction and capitalist subcultural theory</h2>
<p>In the works of Fellini, a predominant concept is the distinction between without and within. Debord uses the term ‘deconstructive pretextual theory’ to denote a mythopoetical totality.</p>
<button id="generate">Generate</button>
<div id="generated_title"></div>
</br>
<div id="thing"></div>
wait <span class="myClass">hello</span> this is some text <span id="somevar" class="thing"> this </span> is more
</body>
</html>