Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added commas to before-we-start-the-fullstack.md #2386

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/content/lesson/before-we-start-the-fullstack.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Before Starting Full Stack Development"
subtitle: "Quick review about concepts you need to know in CSS, HTML and JS before starting the Full Stack Development course"
subtitle: "Quick review about concepts you need to know in CSS, HTML, and JS before starting the Full Stack Development course"
tags: ["html/css", "web-development"]

---
Expand All @@ -12,7 +12,7 @@ The upcoming material assumes that you have a good level of understanding of the
## Things you should know about HTML/CSS

- What is HTML, and what is it used for?
- The most essential tags like headings (`<h1>, <h2>, <h3>`...), paragraphs (`<p>`), ordered/unordered lists (`<ol>, <ul>`), etc. Think about how each of these tags changes the look, feel and the behavior of your website. For example, what looks bigger, `<h1>` or `<h2>`? Why use `<ul>` instead of `<ol>`? Etc.
- The most essential tags like headings (`<h1>, <h2>, <h3>`...), paragraphs (`<p>`), ordered/unordered lists (`<ol>, <ul>`), etc. Think about how each of these tags changes the look, feel, and behavior of your website. For example, what looks bigger, `<h1>` or `<h2>`? Why use `<ul>` instead of `<ol>`? Etc.
- How to include a separate CSS stylesheet into your website by using the `<link>` tag.
- How to override or enhance the way that HTML tags look and behave by using CSS selectors and rules, for example:
- How can I select an element to update its styles? [By using a selector](https://4geeks.com/lesson/what-is-css-learn-css#wait-what-is-a-selector).
Expand All @@ -29,7 +29,7 @@ The upcoming material assumes that you have a good level of understanding of the
- What is CSS, and what is it used for? Thanks to CSS, we can select specific elements in the HTML and style them with colors, sizes, etc.
- Why is the use of the `#id` selector discouraged? Because it's too specific, it goes against reusability.
- When should I use the `#id` selector? Never, we will use `#id`s only when coding in JavaScript.
- Why are stylesheets supposed to be written from the most generic to the most specific styles? Because you will write way fewer lines of code that way, you also avoid lots of bugs or conflicts between your selectors.
- Why should stylesheets be written from the most generic to the most specific styles? Because you will write way fewer lines of code that way, you also avoid lots of bugs or conflicts between your selectors.

## Things you should know about programming

Expand Down