generated from MOOC-tutorials/git_web_practice
-
Notifications
You must be signed in to change notification settings - Fork 638
/
Copy pathBellic12.html
26 lines (26 loc) · 1.13 KB
/
Bellic12.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi primera página</title>
<meta name="author" content="Bellic12">
<meta name="created" content="2024-07-10">
<meta name="changedby" content="Bellic12">
<meta name="changed" content="2024-07-10">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body class="container text-center">
<h1 id="titulo">Título de la página</h1>
<img id="imagen" src="imagenes/BD3.gif" alt="Descripción de la imagen" class="img-fluid">
<div class="row text-center">
<div class="col-md-6">
<span>←</span><a id="enlace" href="pagina4.html">Mi cuarta página HTML</a>
</div>
<div class="col-md-6">
<a href="pagina2.html">Mi segunda página HTML</a><span>→</span>
</div>
</div>
</body>
</html>