-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesenhos.html
28 lines (24 loc) · 1.14 KB
/
desenhos.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="pt-br">
<head>
<title>Bar Chart</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body onLoad="init();">
<h1>Gerando Gráficos com Canvas</h1>
<h2>Censo de Populariedade Cristã</h2>
<canvas id="bar" width="550" height="400"> </canvas>
<script src="bar.js"></script>
<fieldset>
<legend>Personagens Bíblicos</legend>
<ul class="styledSelect">
<li><input type="radio" name="fruit" value="Cherry" id="fruitCherry" checked><label for="fruitCherry">Jesus</label></li>
<li><input type="radio" name="fruit" value="Lemon" id="fruitLemon"><label for="fruitLemon">Noé</label></li>
<li><input type="radio" name="fruit" value="Banana" id="fruitBanana"><label for="fruitBanana"">David</label></li>
<li><input type="radio" name="fruit" value="Strawberry" id="fruitStrawberry"><label for="fruitStrawberry">Salomão</label></li>
<li><input type="radio" name="fruit" value="Apple" id="fruitApple"><label for="fruitApple">Moisés</label></li>
</ul>
</fieldset>
</body>
</html>