-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.97 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
<!DOCTYPE html>
<html lang='pt'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1'>
<meta name='keywords' content='politics, cgpgrey' />
<meta name='description' content='Um site sobre diferentes sistemas eleitorais.'>
<meta name='author' content='Guilherme Reis de Micaelo Simões'>
<link rel='icon' type='image/x-icon' href='images/favicon.ico' />
<title>Política Animal</title>
<link rel='stylesheet' href='styles.css'>
</head>
<body>
<div class='header'>
<h1>Política no Reino Animal</h1>
</div>
<div class='content'>
<div class='home'>
<h2>1. A Maioria Relativa</h2>
<p>A democracia é introduzida no Reino Animal, mas são encontrados alguns problemas inesperados.</p>
<iframe src='https://www.youtube.com/embed/s7tWHJfhiyo?cc_load_policy=1&hl=pt-pt&rel=0' width='800' height='480' allowfullscreen></iframe>
<h2>2. O Voto Alternativo (Votação com Turnos Instantâneos)</h2>
<p>A Rainha Leoa aprende uma maneira diferente de votar.</p>
<iframe src='https://www.youtube.com/embed/3Y3jE3B8HsE?cc_load_policy=1&hl=pt-pt&rel=0' width='800' height='480' allowfullscreen></iframe>
<h2>3. Gerrymandering</h2>
<p>Há algo de errado com o modo como os cidadãos são agrupados antes de votar.</p>
<iframe src='https://www.youtube.com/embed/Mky11UJb9AY?cc_load_policy=1&hl=pt-pt&rel=0' width='800' height='480' allowfullscreen></iframe>
<h2>4. A Representação Proporcional Mista</h2>
<p>Uma pequena ilha tem uma maneira diferente de eleger os seus representantes.</p>
<iframe src='https://www.youtube.com/embed/QT0I-sdoSXU?cc_load_policy=1&hl=pt-pt&rel=0' width='800' height='480' allowfullscreen></iframe>
</div>
</div>
<script type="text/javascript">
Array.from(document.querySelectorAll('iframe')).forEach(iframe => {
iframe.removeAttribute('width');
iframe.removeAttribute('height');
})
</script>
</body>
</html>