w3-video.com logo

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++

Share it



blockquote nested within elements,
elements nested within blockquote

Classified as: flow content, sectioning root, palpable content

Parents, blockquote

Children, blockquote

Examples: blockquote parents, blockquote children

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

<blockquote>
...
</blockquote>

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

<blockquote>
<p>
...
</p>
</blockquote>

</body>
</html>
Invalid Syntax 3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<html>
<head>
<title> ...</title>
<blockquote>...</blockquote>
</head>
<body>

<h1>
<blockquote>...</blockquote>
</h1>

</body>
</html>

Syntax 1: Valid, blockquote nested inside body : allowed
Syntax 2: Valid, p nested inside blockquote : allowed
Syntax 3: Invalid, blockquote nested inside head, h1 : not allowed

blockquote intro blockquote, q, browser display blockquote syntaxblockquote, q, cite attribute