-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 1.99 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
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Reprograma - Calculadora Freelancer</title>
<link rel="icon" href="img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/estilos.css" />
</head>
<body>
<nav class="barra-navegacao">
<img
class="barra-navegacao__logotipo"
src="img/logotipo-reprograma.png"
/>
</nav>
<header class="cabecalho">
<h1 class="cabecalho__titulo">Calculadora Freelancer</h1>
</header>
<main class="conteudo-principal">
<section class="secao secao-hora">
<article class="secao__conteudo">
<div class="secao__formulario">
<fieldset>
<legend>Quanto você ganha por mês?</legend>
<div class="secao__formulario__grupo">
<label for="ganho-mes">Quantidade por mês</label>
<input id="ganho-mes" type="number" value="300" onfocus="this.value = ''" />
</div>
</fieldset>
<fieldset>
<legend>Quantas horas você trabalha por dia?</legend>
<div class="secao__formulario__grupo">
<label for="horas-dia">Horas por dia</label>
<input id="horas-dia" type="number" value="0" onfocus="this.value = ''"/>
</div>
</fieldset>
<button onclick="calcularValorHora()">Calcular</button>
</div>
</article>
<footer class="secao__rodape">
<h3 class="secao__rodape__valor">
<span id="resposta">R$ 0,00</span><small>/hora</small>
</h3>
<p class="secao__rodape__legenda">Seu valor por hora</p>
</footer>
</section>
</main>
<footer class="rodape">Feito com muito <a href="desafio.html">♥</a></footer>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>