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
33 changes: 33 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
p {
color: red;
border: 7px dotted black;
}

h1 {
color: rgb(255, 255,0);
}

h2 {
background-color: blue;
height: 100px;
width: 50%;
}

h3 {
width: 30px;
margin: 0 auto;
}

h3, p {
color: red;
}


div {
height: 100px;
width: 100%;
background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTm_2UHVbhX0pOAdthMwA0edMxgA4F2lD5q4zWah6uLpoPQaOf8Fq1K5w_x39nXzFvypEE&usqp=CAU");
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
Binary file added img/jean-victor-balin-icon-cubes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<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>Sam | Generation_web_excercise</title>
<link rel="stylesheet" href="./css/style.css" >
</head>
<body>
<div>
<h1>Hola, yo soy el titulo principal</h1>
</div>
<h2>Hola, soy un titulo H2</h2>
<h3>Yo soy un titulo H3</h3>

<p>Yo soy un parrafo</p>
<p>Yo soy otro parrafo</p>
</body>
</html>