Hola mundo HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="es"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>A Basic HTML5 Template</title> | |
<meta name="description" content="Una plantilla básica de HTML5 para inciar un proyecto."> | |
<meta name="author" content="Fredy Rosero"> | |
<meta property="og:title" content="Plantilla básica de HTML5"> | |
<meta property="og:type" content="website"> | |
<meta property="og:description" content="Una plantilla básica de HTML5 para inciar un proyecto.."> | |
<meta property="og:image" content="image.png"> | |
<link rel="icon" href="/favicon.ico"> | |
<link rel="icon" href="/favicon.svg" type="image/svg+xml"> | |
<link rel="apple-touch-icon" href="/apple-touch-icon.png"> | |
<link rel="stylesheet" href="css/styles.css?v=1.0"> | |
<def script src="js/scripts.js"></script> | |
</head> | |
<body> | |
<h1>Hola</h1> | |
<p>mundo!</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment