How should all HTML files begin?
<DOCTYPE! html>
<html></html>
What declaration should be used to begin all HTML files?
<DOCTYPE! html>
What attribute should be included in the <html> tag?
<html>
</html>
Does a script go inside or outside of the <html> tag?
Inside
What is the tag for linking a stylesheet to an HTML file?
<link></link>
BONUS: self-closing
BONUS: relationship attribute (e.g. rel=”stylesheet”)
BONUS: href attribute (e.g. href=”style.css”)
What is the tag for writing CSS styling in an HTML file (not to be confused with inline styling)?
<style></style>