chore = 🔧
enhancement = ✨
bugfix = 🐛
...
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Bootstrap demo</title> | |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> |
chore = 🔧
enhancement = ✨
bugfix = 🐛
...
<!doctype html> | |
<html> | |
<head> | |
<title>What's the global object available?</title> | |
<script> | |
var getGlobal = function () { | |
if (typeof window !== 'undefined') { | |
return window; // Client-side JavaScript | |
} |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>HMTL template</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<!-- bullframe.css framework https://github.com/marcop135/bullframe.css --> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bullframe.css@4/dist/css/bullframe-system-default.min.css"> | |
</head> | |
<body> |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>HMTL template</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/combine/npm/bootstrap@5/dist/css/bootstrap.min.css,npm/font-awesome@4/css/font-awesome.min.css"> | |
</head> | |
<body> | |
<div class="container"> |