In this workshop, we are moving from one descriptive markup language to another via XSLT. Description of data =/= presentation of data.
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>Heading</h1> <p>Paragraph</p> </body> </html>
The HTML <head>
The HTML <body> contains all of the content to be displayed to the user.
<h1>, <h2>, <h3>, <h4>, <h5>, <h6> — Used to denote different levels of headings.
<section> — Used to define a discrete section of a text for either semantic or markup purposes
<div> — Another way of declaring a discrete section of text, usually for styling. Less accessible than <section> because it does not convey they same semantic meaning.
<p> — Paragraph! We know this one.
<em> — Emphasis. Used to style specific portions of text, usually by rendering them in italics. Indicates that text should be emphasized by a screen reader.
<br/> — Line break. Equivalent to the TEI <lb>
<table> — defines the beginning and ending of content to be formatted as a table.
<thead> — sets header content for a table apart from the table body.
<tbody> — groups a table's body content
<tr> — declares the start of a new row in the table
<th> — defines a table cell as containing header content
<td> — defines a table cell as containing data content