Skip to content

Instantly share code, notes, and snippets.

@maximal
Last active August 30, 2023 12:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save maximal/111494afc69b38c5ad19 to your computer and use it in GitHub Desktop.
Save maximal/111494afc69b38c5ad19 to your computer and use it in GitHub Desktop.
Заготовка HTML-файла, который добавляется в шаблоны новых файлов операционной системы
<!DOCTYPE HTML>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Новый HTML-документ</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<style type="text/css">
* {
}
</style>
</head>
<body>
<div class="container">
</div>
<!-- Скрипты
======= -->
<!-- jQuery -->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<!-- Bootstrap -->
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- Поехали! -->
<script type="text/javascript">
jQuery(function ($) {
// Жёсткий, мужицкий стрикт
'use strict';
// Поехали!
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment