Ilaria Digital School

Full Stack Web Developer

Become a Full Stack Web Developer and master the development to create, manage and deploy complete applications (HTML, CSS, introduction to algorithms, JavaScript, NodeJS as the main backend, Python for scripting/automation, SQL, NoSQL, automation, SQL, NoSQL, automation, SQL, SQL, NoSQL, Git, SQL, Git, Git, unit tests, unit tests, secure your web application, CI/CD). Skills: Design a multi-layered and secure software architecture (presentation, business, persistence); Develop the front-end and back-end components of a web application; Implement secure REST APIs interconnected to a relational...

Autor

Ilaria Digital School

Kategorie

Education

Podcast-Website

www.ilaria-academy.com

Neueste Folge

10. Jul 2026

Wo hören?

Podcasts in der App Replaio Radio Bald verfügbar

Podcasts kommen bald in die App. Installiere sie jetzt und erlebe als Erster einen ganz neuen Blick auf Podcasts

Bei Google Play herunterladen Kostenlos installieren Android 5 Mio.+ Downloads · Bewertung 4,8 iOS bald

Folgen

Workshop: making a form both responsive and accessible 10.07.2026

THEORETICAL RECAP A responsive form adapts its layout and sizing to any screen width, while an accessible form ensures that all users — including those relying on screen readers, keyboard navigation, or assistive technologies — can interact with it w...

Accessibility and responsive design: contrasts, sizes, visible focus 10.07.2026

Responsive design and accessibility are two concepts that go hand in hand. You have already mastered the technical tools of responsive design: CSS Grid, Flexbox, and media queries. You know how to reorganize a layout from four columns to one column, ...

Workshop: refactoring an existing page mobile-first 09.07.2026

**Theoretical Recap** Mobile-first is a CSS writing strategy where you define the base styles for the smallest screens first, then progressively enhance the layout for larger screens using min-width media queries. This is the opposite of desktop-firs...

Mobile-first vs desktop-first technology — advantages and limitations 09.07.2026

When building a responsive website, one of the first strategic decisions you must make is whether to start designing and coding for small screens (mobile-first) or for large screens (desktop-first). This choice profoundly influences how you write you...

Intermediate mini-project: responsive portfolio home page 08.07.2026

## Project Overview You will design and build a fully responsive portfolio home page from scratch using HTML5 and CSS3, with a strong focus on CSS Grid and Flexbox. This mini-project is the culmination of your work on responsive design: grid vocabula...

Workshop: go from 4 columns to 1 column depending on the screen size 07.07.2026

**Theoretical Recap** CSS Grid is a two-dimensional layout system that lets you define rows and columns explicitly. When combined with media queries, it becomes a powerful tool for building truly responsive layouts. The core idea behind responsive Gr...

Grid-specific media queries and layout splitting 06.07.2026

CSS Grid is a powerful layout system, but its real strength in professional web development emerges when it is combined with media queries. This combination allows you to build layouts that adapt intelligently to different screen sizes, from mobile p...

Workshop: blog layout (sidebar + content) 03.07.2026

THEORETICAL RECAP CSS Grid is a two-dimensional layout system that lets you control both rows and columns simultaneously, making it the ideal tool for page-level layouts like a classic blog with a sidebar and a main content area. Unlike Flexbox, whic...

Advanced alignment and placement in Grid 03.07.2026

Now that you have a solid understanding of CSS Grid fundamentals — containers, tracks, rows, columns, areas, and the use of repeat with auto-fit and minmax — it is time to go further. This chapter focuses on the advanced mechanisms that allow you to ...

Workshop: Fluid grid with repeat (auto-fit, minmax) 02.07.2026

**Theoretical Recap** CSS Grid's `repeat()` function combined with `auto-fit` and `minmax()` is one of the most powerful tools for building truly fluid, responsive layouts without a single media query. Here is what you need to understand before start...

Best practices for naming Grid areas 01.07.2026

Now that you have explored the fundamentals of CSS Grid — its philosophy, its vocabulary (container, tracks, rows, columns, areas), and built your first basic grids — it is time to go deeper into one of the most powerful and readable features of Grid...

Workshop: basic grid with 2 columns and 3 rows 30.06.2026

**Theoretical Recap** CSS Grid is a two-dimensional layout system that lets you control both columns and rows simultaneously — a fundamental shift from Flexbox, which operates along a single axis. The core mental model: you define a grid container wi...

Grid terminology: container, tracks, rows, columns, areas 30.06.2026

CSS Grid is a two-dimensional layout system built into modern browsers. Unlike Flexbox, which operates along a single axis at a time (either a row or a column), Grid allows you to control both rows and columns simultaneously. This makes it the ideal ...

Introduction to CSS Grid: philosophy and use cases 29.06.2026

CSS Grid is a two-dimensional layout system built directly into CSS. Unlike Flexbox, which you have already practiced extensively and which organizes elements along a single axis (either a row or a column), CSS Grid allows you to control both rows an...

Interim summary: key principles of responsive design 26.06.2026

Responsive design is one of the foundational pillars of modern web development. Before moving on to more advanced topics such as CSS Grid, it is essential to consolidate the key principles you have been working with throughout this chapter. This summ...

Workshop: adaptive "About" section 26.06.2026

THEORETICAL RECAP Flexbox is a one-dimensional layout model that controls how items are distributed along a single axis — either a row or a column. The core mental model is simple: a flex container governs the behavior of its direct children (flex it...

Combining Media Queries and Flexbox in a single component 25.06.2026

When building modern web interfaces, one of the most powerful techniques available to a developer is combining Media Queries with Flexbox within a single component. You have already worked extensively with Flexbox: alignment, flex-direction, flex-wra...

Workshop: responsive image gallery with flex-wrap 24.06.2026

**Theoretical Recap** Flex-wrap is a core Flexbox property that controls whether flex items are forced into a single line or can wrap onto multiple lines. By default, flex-wrap is set to nowrap, meaning all items stay on one row regardless of their s...

Common Flexbox layout patterns (row, column, wrap) 24.06.2026

Now that you have a solid grasp of Flexbox fundamentals — flexible containers, alignment properties, flow management, and automatic margins — it is time to consolidate this knowledge by examining the most common layout patterns you will encounter in ...

Flexbox properties cheat-sheet and best practices 23.06.2026

Flexbox is a CSS layout model that allows you to align and distribute elements inside a container in a flexible and predictable way. You have already explored the foundational concepts: the flex container, flow direction, alignment, and automatic mar...

Workshop: Reversal of the order of elements with flex-direction 22.06.2026

**Theoretical Recap** The `flex-direction` property is one of the most fundamental properties of Flexbox. It defines the main axis along which flex items are laid out inside their container. It accepts four values: `row` (default, left to right), `ro...

Workshop: creating a flexible navigation bar 22.06.2026

**Theoretical Recap** Flexbox is a one-dimensional layout model that distributes space along a single axis — either row or column. The flex container is the parent element declared with `display: flex`, and its direct children automatically become fl...

Workshop: basic alignment with Flexbox 19.06.2026

**Theoretical Recap** Flexbox (Flexible Box Layout) is a CSS layout model designed to distribute space and align items inside a container along one axis — either horizontal (row) or vertical (column). The key mental model is this: you have a **flex c...

Managing flow and automatic margins in Flexbox 18.06.2026

Now that you have been introduced to the fundamental principle of Flexbox and its flexible container, it is time to go deeper into two closely related and extremely practical concepts: the management of flow direction inside a Flexbox container, and ...

Introduction to Flexbox: flexible container principle 18.06.2026

Flexbox, whose full name is Flexible Box Layout Module, is a CSS layout model introduced with CSS3. Its main purpose is to allow you to arrange, align, and distribute space among elements inside a container, even when their sizes are dynamic or unkno...

Höre den Podcast Full Stack Web Developer in Replaio

Radio und Podcasts in einer App - kostenlos und ohne Anmeldung. Installiere sie noch heute und verpasse den Start nicht

Bei Google Play herunterladen

Replaio ist kein Herausgeber von Podcasts; die Namen der Sendungen, Cover und Audioinhalte gehören ihren Autoren und werden über öffentliche RSS-Feeds verbreitet