Current Assignment(s)
P1: The Live Site
P1 Workshop (Submission)
Due 11:55PM Wednesday, 10.03
P1 Workshop (Submission)
Due 11:55PM Wednesday, 10.03
Review: The 4 Main Document Elements
Can you see how a single page is similar to how you’re structured? You only have one head and one body, and the head always comes first.
This is the basic layout of an HTML document.
HTML
<!DOCTYPE html>
<html>
<head>
<title>My Way-Cool Awesome Site!</title>
<!-- Meta data and information about your site, not visible to visitors. -->
</head>
<body>
<!-- “My Way-Cool Awesome Site!” contents, visible to visitors. -->
</body>
</html>
html
- Previous
- Next