HTML Definitions
Element: Everything from the start tag to the end tag.
Tag: a piece of markup language that is used to indicate the beginning and end of an html element in an html document.
Example: <p> your text here </p>
Nesting: when you put things inside the main element, usually with indentation.
Indentation: when you indent code
Self-closing tag: a tag for an element without a closing tag.
Attributes: special words used inside the opening tag of an element to control the element's behavior. An example would be a source attribute which can come after an image tag, specifying an image's url.
Example: <img src="url">
{{ under construction }}











