#初めに
Sakura EditorでHTMLページを保存する。
#Sakura Editorのダウンロード
#HTMLページを保存する
<html>
<head>
<title>タイトル</title>
</head>
<body id="main-id">
<div>サンプルテキスト</div>
</body>
</html>
#jQueryの追加
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
#jQueryのロード(HTMLを読み込んでからjQueryの処理を開始)
<script>
$(document).ready(function(){
// todo
});
</script>
以上