Current Assignment(s)
A3: Markup
P1 Workshop (Assessments)
Due 11:55PM Monday, 10.15
P1 Workshop (Assessments)
Due 11:55PM Monday, 10.15
Review: HTML Elements and Tags
Remember?
An HTML document is composed of a tree of HTML elements. An element is an individual component of an HTML document. Elements denote to the processor structure and semantic meaning of the document. Elements may also be nested or encapsulated within other elements.
HTML
<p>This is a paragraph element.</p>
<p>This is another paragraph element.</p>
Remember?
Elements are identified through tags.
HTML
<p>This paragraph element is created with an opening "<p>" tag and a closing "</p>" tag.</p>
html
- Previous
- Next