-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 848 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 848 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Express Ingenieria</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<div id="header">
<p>Este Será el nuevo Header</p>
<p>Ahora si Agregamos un dato nuevo desde el HEader</p>
</div>
<div id="post">
<h1>Titulo del Post</h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Labore, deleniti asperiores molestias inventore sapiente fugiat alias unde dolorum consequatur est, ratione vero quasi hic expedita nulla deserunt, debitis placeat eum.</p>
</div>
</div>
<footer>
<p>Que tal si practicamos con este nuevo footer, desde support</p>
<p>Desde otra rama</p>
</footer>
</body>
</html>