Skip to content

Instantly share code, notes, and snippets.

@recurs1v0
Created March 25, 2021 05:42
Show Gist options
  • Save recurs1v0/33004a775012cf5dff4892fced71492a to your computer and use it in GitHub Desktop.
Save recurs1v0/33004a775012cf5dff4892fced71492a to your computer and use it in GitHub Desktop.
Plantilla Básica de HTML. EPPR. Clase 203. GitHub Pages.
<!doctype html>
<html lang="en" class="black-theme">
<!-- EPPR.link || Clase 203. GitHub Pages. || Plantilla Básica de HTML @ EPPR.github.io -->
<head>
<title>EPPR | PLANTILLA HTML</title>
<style>
.black-theme {
}
.header1 {
}
.header2 {
}
.paragraph {
}
</style>
</head>
<body>
<h1 class="header1">Cabecera 1</h1>
<h2 class="header2">Cabecera 2</h2>
<p class="paragraph">
Párrafo regular.
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment