Podcast
Questions and Answers
What is the purpose of the Copyright concept on the internet?
What is the purpose of the Copyright concept on the internet?
- Prevents others from accessing a website
- Allows others to access a website anonymously
- Controls what can be accessed, published, or viewed on the internet
- Prevents others from taking credit for the work done by the original creator (correct)
What is the difference between a web designer and a web developer?
What is the difference between a web designer and a web developer?
- A web designer only works on the front-end, while a web developer works on the back-end
- A web designer designs the website's layout, while a web developer builds the website (correct)
- A web developer designs the website's layout, while a web designer builds the website
- A web developer only works on the back-end, while a web designer works on the front-end
What is the purpose of metadata in HTML?
What is the purpose of metadata in HTML?
- To create a hyperlink
- To describe what a webpage is about (correct)
- To define the structure of a website's content
- To add images to a webpage
What is the purpose of the to tags in HTML?
What is the purpose of the to tags in HTML?
What is the purpose of the tag in HTML?
What is the purpose of the tag in HTML?
What is the difference between an ordered list and an unordered list in HTML?
What is the difference between an ordered list and an unordered list in HTML?
How do you scale an image to keep its original ratio?
How do you scale an image to keep its original ratio?
What are the two components of an attribute in HTML?
What are the two components of an attribute in HTML?
Which HTML tag does every item in a list need to be wrapped in?
Which HTML tag does every item in a list need to be wrapped in?
Which HTML tag contains all the information for the whole table?
Which HTML tag contains all the information for the whole table?
In which HTML tag are table headers typically placed?
In which HTML tag are table headers typically placed?
What is the range of values for RGB colors?
What is the range of values for RGB colors?
What is the hexadecimal code for the color white?
What is the hexadecimal code for the color white?
What is the purpose of CSS?
What is the purpose of CSS?
What is the difference between 'color' and 'background-color' in CSS?
What is the difference between 'color' and 'background-color' in CSS?
How can you select multiple classes in CSS?
How can you select multiple classes in CSS?
Study Notes
Unit 1: Getting Started - What is the Web?
- The internet is a network of networks
- Complications of the internet: copyright, anonymity, and censorship
- Browser: a program on a computer that allows browsing web pages on the internet
- Web designer vs web developer: roles in creating a website
Unit 2: HTML - Structuring Websites
- HTML (Hyper-Text Markup Language): code that defines the meaning and structure of a website's content
- Metadata: data about data (e.g. title, which describes what the page is about)
- HTML tags: define the content of a website
- Structure of an opening tag: ``
- Structure of a closing tag: ``
- 5 essential tags in every website: not specified
- Tags:
- Heading 1-6:
-
- Paragraph of text:
<p>
- Emphasized text:
<em>
- Bold text:
<b>
- Horizontal rule: ``
- Line break:
<br>
- Heading 1-6:
- Image tag attributes:
- Source:
src
- Width:
width
- Height:
height
- Alternate:
alt
- Source:
- Scaling an image to keep its original ratio: not specified
- Difference between unordered and ordered lists:
- Unordered list:
</b></em></p><em><b>
- Ordered list:
</b></em><em><b>
- Unordered list:
- List item: ``
- Tables:
- Table: ``
- Table row: ``
- Table header: ``
- Table data: ``
- HTML Colors:
- More than 140 named colors available
- Colors can be created through a combination of red, green, and blue (RGB)
- RGB values range from 0 to 255
- Hexadecimal colors: #RRGGBB (e.g. #FF0000 = red)
Unit 3: CSS - Styling Websites
- CSS (Cascading Style Sheets): adds style and design to a web page
- CSS rule:
Selector { Property: value; }
- Difference between
color
andbackground-color
: not specified - Selecting elements in CSS:
- By tag: affects all elements with the specified tag
- By class: affects only elements with the specified class name
- By ID: affects only the element with the specified ID
- Class name rules: cannot start with a number or contain spaces
- Selecting multiple classes: not specified
- Order of CSS style application: not specified
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Description
Test your knowledge on the basics of the web, including the internet, copyright, anonymity, and censorship.