Current Assignment(s)
A3: Markup
Due: Recommended by Monday, 5.28
Due: Recommended by Monday, 5.28
Elements in the Body
The body element is where all of the “meat & potatoes” (if you will) of the site gets placed. This is the data that is rendered by the browser and displayed on the client’s local computer.
Within the body there will generally be 2 types of markup used:
- Structural markup
- Semantic markup
HTML
<!DOCTYPE html>
<html lang="en">
<body>
<!-- My "Way-Cool Awesome Site" contents, visible to visitors. -->
</body>
</html>
- Previous
- Next