-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprueba.html
More file actions
47 lines (42 loc) · 1004 Bytes
/
prueba.html
File metadata and controls
47 lines (42 loc) · 1004 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
padding: 50px;
text-align: center;
}
h1 {
font-size: 3em;
color: #333;
}
.button-group {
margin-top: 50px;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.button-group button {
padding: 15px 30px;
font-size: 1.2em;
border: none;
color: white;
background-color: #337ab7;
cursor: pointer;
border-radius: 5px;
}
.button-group button:hover {
background-color: #286090;
}
</style>
</head>
<body>
<h1>Control Diabetes</h1>
<div class="button-group">
<a href="index.html"><button>Calculadora de raciones</button></a>
</div>
</body>
</html>