generated from drawwithcode/P5-empty-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (23 loc) · 932 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>How many Presidents</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="libraries/p5.min.js"></script>
<script src="libraries/p5.sound.min.js"></script>
</head>
<body>
<div id="countriesList">
<p>This website contains visualizations of the lists of presidents (France, USA) and prime ministers (Italy, UK) from different countries, since the end of World War II.<br>
The size of the pictures corresponds to how long each one of them served as the country's or the government's leader.</p>
<ul>
<li><a href="italy.html">Italy</a></li>
<li><a href="france.html">France</a></li>
<li><a href="uk.html">UK</a></li>
<li><a href="usa.html">USA</a></li>
</ul>
</div>
</body>
</html>