01.
<!DOCTYPE html>
02.
<
html
>
03.
<
head
>
04.
<
meta
content
=
"width=device-width initial-scale=1.0 minimum-scale=1.0 maximum-scale=1.0 user-scalable=no"
name
=
"viewport"
>
05.
<
meta
charset
=
"UTF-8"
>
06.
<
link
rel
=
"stylesheet"
href
=
"https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/css/bootstrap.css"
>
07.
08.
<
style
>
09.
</
style
>
10.
11.
<
script
>
12.
// jQuery
13.
$(function(){});
14.
15.
// API
16.
setTimeout(function(){}, 1000);
17.
18.
// 関数定義と同じ
19.
var test = function(){};
20.
21.
// 無名関数の実行
22.
(funcion(){})():
23.
</
script
>
24.
25.
</
head
>
26.
<
body
>
27.
28.
29.
</
body
>
30.
</
html
>