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?
What is the difference between a web designer and a web developer?
What is the difference between a web designer and a web developer?
What is the purpose of metadata in HTML?
What is the purpose of metadata in HTML?
What is the purpose of the to tags in HTML?
What is the purpose of the to tags in HTML?
Signup and view all the answers
What is the purpose of the tag in HTML?
What is the purpose of the tag in HTML?
Signup and view all the answers
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?
Signup and view all the answers
How do you scale an image to keep its original ratio?
How do you scale an image to keep its original ratio?
Signup and view all the answers
What are the two components of an attribute in HTML?
What are the two components of an attribute in HTML?
Signup and view all the answers
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?
Signup and view all the answers
Which HTML tag contains all the information for the whole table?
Which HTML tag contains all the information for the whole table?
Signup and view all the answers
In which HTML tag are table headers typically placed?
In which HTML tag are table headers typically placed?
Signup and view all the answers
What is the range of values for RGB colors?
What is the range of values for RGB colors?
Signup and view all the answers
What is the hexadecimal code for the color white?
What is the hexadecimal code for the color white?
Signup and view all the answers
What is the purpose of CSS?
What is the purpose of CSS?
Signup and view all the answers
What is the difference between 'color' and 'background-color' in CSS?
What is the difference between 'color' and 'background-color' in CSS?
Signup and view all the answers
How can you select multiple classes in CSS?
How can you select multiple classes in CSS?
Signup and view all the answers
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.