Last active
August 30, 2023 12:23
-
-
Save maximal/111494afc69b38c5ad19 to your computer and use it in GitHub Desktop.
Заготовка HTML-файла, который добавляется в шаблоны новых файлов операционной системы
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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