Tools, FAQ, Tutorials:
Required Sub-elements in HTML
What Is a Required Sub-element?
✍: FYIcenter.com
A required sub-element is a sub-element that you must included in the parent
element. Most sub-elements are optional. But there are some sub-elements that
are required by their parent elements.
Here are two good examples:
<!-- Valid: "head" requires "title" -->
<head>
<title>HTML FAQs by FYIcenter.com</title>
</head>
<!-- Valid: "ul" requires "li" -->
<ul>
<li>Hope you like it.</li>
</head>
⇒ White Space Characters in HTML
⇐ Sequence of Sub-elements in HTML
2024-02-28, ∼2070🔥, 0💬
Popular Posts:
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...
How to how to use matched string and groups in replacements with re.sub()? When calling the re.sub()...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How To Convert a Character to an ASCII Value? If you want to convert characters to ASCII values, you...