Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<h1>Este es un sitio web con Github Pages</h1>
<p>Y fue creado con amor para el Curso de Git y Github de Platzi</p>
<p><img src="https://i.imgur.com/PfA0M2o.gif" /></p>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pagina con amor para gitHub</title>
</head>
<body>
<h1>Este es un sitio web con Github Pages</h1>
<p>Y fue creado con amor para el Curso de Git y Github de Platzi</p>
<p><img src="https://i.imgur.com/PfA0M2o.gif" alt="niño bailando"/></p>
</body>
</html>

21 changes: 21 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
*{
padding: 0;
margin: 0;
}

body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Courier New', Courier, monospace;
}

h1{
color: navy;
margin-bottom: 30px;
}

p{
margin-bottom: 5px;
}