Nic's Study Guide: SYST10049 Midterm Review
HTML Fundamentals
- HTML's Function:
- HyperText Markup Language (HTML) builds all Content and Structure of a webpage.
- HTML vs. CSS:
- HTML is for structure and content, while CSS is for styling and layout.
- HTML Elements:
- HTML elements are the building blocks of web pages, defined by tags like <div>, <p>, <a>, etc.
- HTML Attributes:
- Attributes provide additional information about HTML elements, such as 'href' for links or 'src' for images.
- HTML Document Structure:
- An HTML document typically includes a doctype declaration, <html>, <head>, and <body> sections.
- Common HTML Tags:
- Some common tags include <h1>-<h6> for headings, <p> for paragraphs, <a> for links, <img> for images, and <div> for divisions.
- Semantic HTML:
- Semantic HTML uses tags that convey meaning, such as <article>, <section>, <header>, <footer>, and <nav>.