-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportada.html
More file actions
33 lines (29 loc) · 895 Bytes
/
portada.html
File metadata and controls
33 lines (29 loc) · 895 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mini Proyecto</title>
<style>
body{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
background-color:rgba(0, 146, 172, 0.548) ;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
button:hover{
border-radius: 5px;
background-color: rgba(0, 0, 0, 0.815);
color:antiquewhite;
}
</style>
</head>
<body>
<h1>Bienvenido a mi Funval-API</h1>
<h4>¡Explora el mundo de la programacion!</h4>
<button>Jose Perdomo</button>
</body>
</html>