-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractica01.html
41 lines (39 loc) · 3.11 KB
/
practica01.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<!--
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html"> ->
<meta http-equiv="refresh" content="3"> -> El navegador se comporta de cierta forma, se hace un refrest cada 3 segundos
<meta http-equiv="refresh" content="1;url=https://www.google.com"> -> Es similar a la de arriba, pero hace un retorno al link señalado
<meta http-equiv="content-security-policy" content="default-src 'self'"> ->
<!-- Sintaxis -->
<meta http-equiv="key" content="value">
<!-- Se utiliza para controlar aspectos de la comunicación entre el cliente y el navegador -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta http-equiv="content-type" content="image/png">
<meta http-equiv="refresh" content="10;http://google.com">
<title>Práctica01</title>
</head>
<body>
<div>
<div>
<div>
<div>
<h2>Hola Mundo!</h2>
<p>
Este es un ejemplo de como se vería el contenido
de una página web sin hacer uso del framwork bootstrap.
</p>
<p>
<a href="">Aceptar</a>
<a href="">Cancelar</a>
</p>
</div>
</div>
</div>
</div>
</body>
</html>