Skip to content

Instantly share code, notes, and snippets.

@dancer1325
Created August 16, 2019 18:43
Show Gist options
  • Save dancer1325/62263d6af47d63c63361800f3fc6a501 to your computer and use it in GitHub Desktop.
Save dancer1325/62263d6af47d63c63361800f3fc6a501 to your computer and use it in GitHub Desktop.
HTML: Código básico
<!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