-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 1.08 KB
/
index.html
File metadata and controls
37 lines (29 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="bootstrap/bootstrap.css">
<title>Kulturizate</title>
<style>
font-size: 12px; /* tama;o de texto de la página completa */
}
p {
font-size: 2rem; /* rem es la unidad relativa al html, es decir, toma referencia del valor de html *
e.j 2rem = al doble de 12px = 24px */
}
.slider {
background: url("soju.jpg");
height: 100vh;
background-size: cover; /* esto es para que se adapte al dispositivo */
background-position: center; /* esto es para posicionarlo centralizadamente */
}
</style>
</head>
<body>
<section class="container-fluid slider d-flex justify-content-center align-items-center col-md-12"> <!-- es como una fila o row-->
<h1 class="display-1 text-light">KULTURIZATE</h1> <!-- Titulo con display para usar menos css-->
</section>
</body>
</html>