InterviewSolution
| 1. |
How to structure the document so that web browsers can render an enhanced view of the document and search engines can determine important keywords? |
|
Answer» Markup a DOCUMENT with block elements to identify its structure. There is MEANING in structure, and HTML markup is most meaningful when its structure reflects the hierarchy and relationships of a document’s topics. Because a parent element contains child elements, they are related structurally. This implies their content is related. For example, a child’s content is typically a subtopic of its parent’s topic, and siblings typically have related subtopics. Implicit in the hierarchical nature of HTML is the assumption that document organization is hierarchical. Structural blocks may contain block elements only. They have structural meaning, but they have LITTLE semantic meaning. In other words, they do not tell you what something is; they tell you how it is organized. There are four major structural block elements (<ol>, <ul>, <dl>, and <table>) with nine supporting structural elements (<li>, <dt>, <dd>, <CAPTION>, <thead>, <tfoot>, <tbody>, <colgroup>, and <col>) |
|