Created
August 16, 2019 18:43
-
-
Save dancer1325/62263d6af47d63c63361800f3fc6a501 to your computer and use it in GitHub Desktop.
HTML: Código básico
This file contains hidden or 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> | |
<head> | |
<meta charset='utf-8'> | |
<meta http-equiv='X-UA-Compatible' content='IE=edge'> | |
<title>Mi página web</title> | |
<meta name='viewport' content='width=device-width, initial-scale=1'> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
<link rel="stylesheet" href="estilos.css"> | |
<script src='main.js'></script> | |
</head> | |
<body> | |
<div class="container main-container"> | |
<h1>Mi página web</h1> | |
<hr> | |
<p> | |
Prueba | |
</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment