-
Notifications
You must be signed in to change notification settings - Fork 0
/
incognito.html
43 lines (40 loc) · 1009 Bytes
/
incognito.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
<html>
<head>
<title>Statistics</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
h1 {
margin: 0;
padding: 20px;
background-color: #333;
color: #fff;
text-align: center;
}
h2 {
margin: 0;
padding: 10px;
background-color: #ccc;
color: #333;
}
p {
margin: 0;
padding: 20px;
}
</style>
</head>
<body>
<h1>Statistics</h1>
<h2>Poverty</h2>
<p>According to the World Bank, the poverty rate in the United States is 10.5%.</p>
<iframe src="https://www.google.com/chart?chs=500x300&cht=bvg&chco=3366CC&chd=t:10.5,20.7,14.8&chl=United%20States|India|China" width="500" height="300" frameborder="0"></iframe>
<h2>Education</h2>
<p>The literacy rate in the United States is 99%.</p>
<h2>Health</h2>
<p>The life expectancy in the United States is 78 years.</p>
</body>
</html>