Skip to content

Instantly share code, notes, and snippets.

@tihhgoncalves
Last active April 7, 2023 02:32
Show Gist options
  • Save tihhgoncalves/f4766c5af0e3cd0ab71b330d4f54d399 to your computer and use it in GitHub Desktop.
Save tihhgoncalves/f4766c5af0e3cd0ab71b330d4f54d399 to your computer and use it in GitHub Desktop.
HTML em Branco
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="favico.png">
<title>Título do Site</title>
<!-- Bootstrap 5 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- Ícones Boostrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.6.1/font/bootstrap-icons.css">
<!-- Extras do Bootstrap pelo @tihhgoncalves -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh//tihhgoncalves/bootstrap5-tihh@v1.0.1/dist/bootstrap5-tihh.css">
<!-- ViewPort -->
<meta name="viewport" content="width=device-width,initial-scale=1.0">
</head>
<body>
<div> ... </div>
</body>
</html>
@tihhgoncalves
Copy link
Author

tihhgoncalves commented Jan 19, 2022

Esse é um script simples, que utilizo como uma estrutura inicial pra qualquer HTML que eu for trabalhar. Por padrão, por exemplo, utilizo o Bootstrap 5.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment