Part 1 - Static web development¶
- You know what static web development is, what are the advantages and disadvantages about it and when and why we need/use it.
- You know what CDN is, what are the advantages and disadvantages about it and when and why we need/use it.
HTML¶
- What does HTML stand for, and what is its primary purpose in web development?
Info
HTML stands for HyperText Markup Language, and its primary purpose in web development is to structure and present content on web pages.
- Differentiate between HTML elements and HTML attributes. Provide examples of each.
Info
HTML elements are the building blocks of a web page, such as <p>
, <h1>
, and <a>
. HTML attributes provide additional information about elements, such as href in <a>
or src in <img>
.
- Explain the role of the
<head>
and<body>
sections in an HTML document. Give examples of what type of content should go in each.
Info
The <head>
section contains metadata about the document, such as the page title, links to stylesheets, and scripts. The <body>
section contains the content that will be displayed on the page, such as headings, paragraphs, images, and links.
- Describe semantic HTML and provide examples of semantic elements.
Info
Semantic HTML is the use of HTML markup to reinforce the meaning of the information in webpages rather than merely define its presentation or look. Examples of semantic elements include <header>
, <nav>
, <main>
, <article>
, <section>
, <aside>
, <footer>
, <figure>
, and <figcaption>
.
- Discuss the importance of using semantic HTML tags and their impact on accessibility and SEO.
Info
Semantic HTML tags help search engines understand the content of a webpage and improve the page's ranking in search results. Semantic HTML tags also help screen readers and other assistive technologies understand the content of a webpage and improve accessibility for users with disabilities.
- What is the purpose of HTML5's
<canvas>
element, and how is it typically used?
Info
The <canvas>
element is used to draw graphics, animations, or other visual images on a webpage using JavaScript.
- Provide example of common HTML & CSS naming conventions that adhere to best practices.
Info
Common conventions include using lowercase letters for HTML tags and attribute names, using hyphens for multi-word class names (e.g., class="my-class"). We use Kebab case.
Example of all the case:
CSS¶
- Explain the difference between HTML and CSS.
Info
HTML is a markup language used to structure and present content on web pages, while CSS is a style sheet language used to style the presentation of HTML elements on web pages.
Example:
- Explain the box model in CSS. How does it affect the layout and styling of elements on a webpage?
Info
The box model is a way of representing the space taken up by an element on a webpage. It consists of the content area, padding, border, and margin. The box model affects the layout and styling of elements on a webpage by determining the size of the element and its position relative to other elements.
- Describe the difference between inline, internal, and external CSS styles. When might you use each approach?
Info
Inline CSS styles are applied directly to an element using the style attribute. Internal CSS styles are defined in the <head>
section of an HTML document using the <style>
tag. External CSS styles are defined in a separate CSS file and linked to an HTML document using the <link>
tag. Inline styles are typically used to apply styles to a single element, internal styles are typically used to apply styles to a single page, and external styles are typically used to apply styles to multiple pages.
Example:
- What is the purpose of CSS selectors? Provide examples of different types of selectors.
Info
CSS selectors are used to select the HTML elements to which styles should be applied. Examples of selectors include element selectors (e.g., p
), class selectors (e.g., .my-class
), ID selectors (e.g., #my-id
), and attribute selectors (e.g., [type="text"]
).
Example:
- How can you apply CSS styles specifically to different media types (e.g., screen, print)?
Info
You can use the @media
rule to apply CSS styles specifically to different media types. For example, you can use the @media screen
rule to apply styles to screens and the @media print
rule to apply styles to printed documents.
Example:
- Explain the difference between a class and an ID in CSS. When should you use one over the other?
Info
Classes in CSS are used for applying styles to multiple elements with similar characteristics, while IDs are meant for unique elements. Classes are preferred for styling because they are more reusable.
JavaScript¶
- Briefly describe the role of JavaScript in web development.
Info
JavaScript is a scripting language used for adding interactivity and dynamic behavior to web pages. It is used to create interactive elements like buttons, forms, and animations.
- Differentiate between variables declared with
var
,let
, andconst
. When should you use each?
Info
Variables declared with var
are function-scoped, variables declared with let
are block-scoped, and variables declared with const
are block-scoped and cannot be reassigned. You should use var
when you want to declare a variable that is accessible throughout a function, let
when you want to declare a variable that is accessible only within a block, and const
when you want to declare a variable that is accessible only within a block and cannot be reassigned.
Example:
- What is the DOM (Document Object Model), and how does JavaScript interact with it?
Info
The DOM is a programming interface for HTML and XML documents. It represents the document as a tree of nodes and objects that can be manipulated with JavaScript.
Example:
- What is the differance between
==
and===
?
Info
The ==
operator compares two values for equality after converting both values to a common type. The ===
operator compares two values for equality without converting the values to a common type.
Example:
- What is an event listener, and how can you use it to respond to user interactions on a webpage?
Info
An event listener is a function that is called when a specific event occurs, such as a mouse click or key press. You can use event listeners to respond to user interactions on a webpage by attaching them to HTML elements.
Open your console with Ctrl+Shift+I or Cmd+Option+K on mac
Example: