w3-video.com logo

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++

Share it



script ... /script syntax

Syntax script

Examples script syntax

Syntax1: Valid adding script statements in page (INLINE script)
Syntax2: Valid linking to an external script file (IMPORTED script)

Valid Syntax 1
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<html>
<head>
<title>...</title>
<script>

</script>
</head>
<body>

</body>
</html>
Valid Syntax 2
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<html>
<head>
<title>...</title>
<script src="URL"></script>
</head>
<body>

</body>
</html>

Video demonstration script element, syntax

HTML5 script syntax, Tutorial

min video details
00:05 script element syntax
00:14 script element has:
00:14 - a start tag
00:16 - and an end tag
00:19 both required
script intro script inline, imported, data islands script browser display script parents - script statements script async attributescript charset attributescript defer attributescript type attributescript src attribute