-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDietas.html
80 lines (77 loc) · 2.78 KB
/
Dietas.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dietas</title>
<style>
*{
margin: 0;
padding: 0;
}
.fundo{
background-color: #071625;
height: 100vh;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
}
#tabela{
position: absolute;
background: #337967;
display: flex;
flex-direction: column;
padding: 15px;
top: 12%;
border-bottom-right-radius: 10px;
border-top-right-radius: 10px;
}
#btn-cutting{
position: absolute;
background-color: #3C927D;
color: white;
padding: 5px;
top: 25%;
right:8%;
border-radius: 15px;
border-color: #071625;
}
#btn-bulking{
position: absolute;
background-color: #3C927D;
color: #fff;
padding: 5px;
top: 25%;
left:15%;
border-radius: 15px;
border-color: #071625;
}
</style>
</head>
<body>
<div class="fundo">
<div id="tabela">
<h4>TMB</h4>
<h4>GCT</h4>
<h4>Q' d'agua diária</h4>
</div>
<div>
<a href="C:\Users\Matheus\Documents\Program\HTML CSS\Estudos\independentes\Praticas-FrontEnd\Calculadora-de-TMB\Refbulking.html">
<button id="btn-bulking">
<img width="500px" src="https://blog.sardinhaevolution.com.br/wp-content/uploads/2017/11/142414-bulking-sujo-e-bulking-limpo-quais-as-diferencas.jpg">
<h3><strong>Bulking</strong></h3>
<p>O bulking é a primeira fase do processo de hipertrofia<br>que consiste no aumento de 10 a 20% no consumo de calorias,<br> para facilitar o ganho de peso e massa muscular.<br> Este processo é praticado principalmente por fisiculturistas<br> e atletas de alta performance.</p>
</button>
</a>
</div>
<div>
<a href="C:\Users\Matheus\Documents\Program\HTML CSS\Estudos\independentes\Praticas-FrontEnd\Calculadora-de-TMB\Refcutting.html">
<button id="btn-cutting">
<img width="450px" src="https://www.dicasdetreino.com.br/wp-content/uploads/2018/08/Cutting-na-Muscula%C3%A7%C3%A3o-O-que-%C3%A9-o-Bulking-como-funciona-e-como-fazer.jpg">
<h3><strong>Cutting</strong></h3>
<p>O cutting é um processo que tem como objetivo perder gordura<br> sem que haja grande perda de massa muscular<br> para que dessa forma seja possível ter maior <br>definição dos músculos.</p>
</button>
</a>
</div>
</div>
</body>
</html>