Skip to content

Instantly share code, notes, and snippets.

@marcop135
Last active May 3, 2021 10:31
Embed
What would you like to do?
[legacy] bullframe.css light/dark HTML template via CDN (add SRI and crossorigin in production)
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>HMTL template</title>
<!-- light -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bullframe.css@3/dist/css/bullframe.min.css">
<!-- dark
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bullframe.css@3/dist/css/bullframe-dark.min.css">
-->
<!-- polyfills: enable HTML5 elements in old browsers, and fix IE10 viewport on Windows 8 -->
<script src="https://cdn.jsdelivr.net/combine/npm/html5shiv@3.7.3,npm/ie10-viewport-bug-workaround.js@1.0.0"></script>
</head>
<body>
<div class="bf-container">
<!-- Add your site or application content here -->
<p>Hello world! This is a bullframe.css starter template</p>
</div>
</body>
</html>
@marcop135
Copy link
Author

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