Intro to Web Development Study Guide
Web Concepts
- HTTP: Protocol used to transfer data on the web
- HTTPS: Secure version of HTTP using encryption
- URL: The address of a web page
Basic HTML Tags
- html: Root of the document
- head: Contains metadata and links
- title: Sets the page title
- body: Holds visible content
- h1 to h6: Headings
- p: Paragraph
- a href: Link to another page
- img src alt: Displays an image
- br: Line break
Lists
Unordered List
Ordered List
- Step One
- Step Two
Tables
| Tag |
Description |
| table |
Defines a table |
| tr |
Table row |
| td |
Table cell |
| th |
Header cell |
Basic CSS Concepts
- Color: Changes the text or background color. Example: color: blue;
- Padding: Adds space inside an element, between the content and the border
- Margin: Adds space outside an element, separating it from other elements
- Font-family: Changes the style of the text. Example: font-family: Arial;
- Background-color: Sets the background color of an element