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
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@
</head>
<body>
<header>
<h1>Hello Wrldo !</h1>
<h1 class="header__title">Hello World!</h1>
<p class="header__text">
<!-- You should create your content here -->
Esto es un mundo
<!-- Try writing down "Lorem30" and press Enter 😉 -->
Lorem ipsum dolor sit amet consectetur adipisicing elit. Eos nostrum ad neque exercitationem temporibus, et a quod perspiciatis esse assumenda facere hic? Voluptas, deleniti. Laboriosam deleniti numquam accusantium ipsum veritatis.

</p>
</header>
</body>
</html>
13 changes: 13 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,17 @@ body {
display: flex;
justify-content: center;
align-items: center;
}

header {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 4rem;
}

.header__text {
padding-top: 2rem;
text-align: center;
line-height: 1.5rem;
}