<div></div>
Note: section elements are semantic because they communicate informaton like, “this is a section”, to things like web browsers and search engines.
id element is used to link a target in CSS. Like, if you want to make the “title” of the page red, you’d do it like this
<h1 id="title">Movie Review Page</h1>
and in your styles.css file, there would be
#title {
color: blue;
}
the # before “title” tells
id element = used for specific things you want to target, no repeat names, no spaces
class element <h1 class="title">Movie Review Page</h1>, similar to id, but used to reference multiple things
Commonly used to embed “actionable code” such as JavaScript for things like games, forms, sliders, etc.
Example:
<script src="path-to-javascript-file.js"></script>
Here the src “source” attribute is used to link an external JavaScript file
Seperation of Concerns = when you seperate your programs into distinct sections and have each section address a seperate concern
< = <> = >&#enter number value;
Example:
© = ©® = ®
SCII hex digits; ASCII → American Standard Code for Information Interchange
Example:
€ = € (the euro symbol)Ω = Ω (omega) TOO COOL!!!!!