Skip to content

Instantly share code, notes, and snippets.

@DK013
Forked from shabith/init-html5.html
Last active June 16, 2022 03:57
Show Gist options
  • Save DK013/388e9bc9ca621bf073929d5615690df9 to your computer and use it in GitHub Desktop.
Save DK013/388e9bc9ca621bf073929d5615690df9 to your computer and use it in GitHub Desktop.
HTML5: Starting Template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>{{name}}</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
{{material-icons}}
</head>
<body>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.5/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.min.js"></script>
{{fonts-awesome}}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment