course

NL/EN
This training is available in Dutch and English. More information

Advanced HTML and CSS

Modern web development with HTML, CSS and browser APIs

July 20, 2026
- Veenendaal / Remote
2 days
1450 (excl. VAT)

Description

Modern web development has evolved far beyond creating static webpages. Today's frontend developers build responsive, interactive and highly dynamic web applications using modern HTML, advanced CSS capabilities, browser APIs and testing tools.

In this course, you will learn professional frontend development techniques used in modern web applications. You will work with semantic HTML, responsive and accessible layouts, scalable CSS architectures, browser APIs, realtime communication and automated testing.

The course combines theory with extensive hands-on labs in which you progressively build a small web application. Along the way, you will explore modern CSS features such as Grid, Flexbox, container queries, animations, preprocessors and utility-first frameworks like Tailwind. The course also introduces practical browser APIs including Web Storage, fetch(), WebSockets and modern frontend testing approaches using Vitest and Playwright.

This training provides a strong foundation for professional frontend web development using modern web standards.

Learning Goals

CheckmarkConstruct accessible and semantically correct webpages using modern HTML elements and forms
ApplyLogo InfoSupport
CheckmarkConstruct maintainable stylesheets using selectors and variables
ApplyLogo InfoSupport
CheckmarkConstruct interactive interfaces using pseudo-classes and pseudo-elements
ApplyLogo InfoSupport
CheckmarkExplain how browsers calculate element dimensions and positioning using the CSS box model
UnderstandLogo InfoSupport
CheckmarkConstruct responsive and well-structured layouts using modern CSS positioning techniques
ApplyLogo InfoSupport
CheckmarkImplement reusable and maintainable styling patterns using Sass/SCSS features
ApplyLogo InfoSupport
CheckmarkConstruct responsive user interfaces using modern CSS responsiveness techniques such as media queries and container queries
ApplyLogo InfoSupport
CheckmarkImplement smooth and performant UI animations using modern CSS animation techniques
ApplyLogo InfoSupport
CheckmarkImplement responsive and maintainable user interfaces using a CSS framework
ApplyLogo InfoSupport
CheckmarkImplement maintainable styling solutions using CSS architecture techniques and utility-first CSS principles
ApplyLogo InfoSupport
CheckmarkImplement client-side data persistence using browser storage APIs
ApplyLogo InfoSupport
CheckmarkImplement communication between frontend and backend services using the fetch() API
ApplyLogo InfoSupport
CheckmarkImplement realtime communication using WebSocket-based communication
ApplyLogo InfoSupport
CheckmarkImplement unit, integration and end-to-end tests using tools such as Vitest and Playwright
ApplyLogo InfoSupport
For the above learning goals we use Bloom's Taxonomy

Prior Knowledge

Basic knowledge of HTML and CSS, i.e. basic understanding of how webpages are structured, styled and rendered in the browser.

Subjects

HTML

In this module, you will deepen your understanding of semantic HTML and modern browser-native elements for building accessible, structured and maintainable webpages.

Lessons

  • Semantic and sectional elements
  • Definition lists and figures
  • Media elements such as audio and video
  • SVG and canvas
  • Dialogs and templates
  • Modern form elements and validation
  • Script loading strategies and DOM interaction

Lab: Build semantic webpages
Lab: Build validated forms
Lab: Implement modal dialogs and reusable templates

After completing this module, students will be able to:

  • Structure webpages using semantic HTML
  • Use modern HTML elements appropriately
  • Build accessible forms with built-in validation
  • Work with reusable browser-native templating features

CSS basics

In this module, you will learn the foundations of modern CSS styling techniques and selectors.

Lessons

  • Selectors and specificity
  • Attribute selectors
  • Logical selectors such as :not(), :has() and :is()
  • Colors, typography and custom fonts
  • CSS custom properties (variables)
  • CSS nesting

Lab: Style webpages and forms
Lab: Apply selectors and reusable styling techniques

After completing this module, students will be able to:

  • Apply CSS selectors effectively
  • Understand specificity and selector precedence
  • Work with CSS variables and nested styling
  • Create maintainable CSS stylesheets

CSS pseudo-classes and elements

In this module, you will learn how to style user interaction states and element fragments.

Lessons

  • Pseudo-classes such as :hover, :focus, :valid and :invalid
  • Structural pseudo-classes such as :nth-child() and :first-of-type
  • Pseudo-elements such as ::before, ::after and ::backdrop
  • Styling form validation states

Lab: Add hover and focus effects
Lab: Style form validation states

After completing this module, students will be able to:

  • Style interactive states of elements
  • Use pseudo-elements for visual enhancements
  • Improve form usability and feedback
  • Apply advanced structural selectors

CSS box model

In this module, you will explore how browsers render and size elements on a webpage.

Lessons

  • Block and inline elements
  • Margin, padding and borders
  • Width and height calculations
  • box-sizing
  • Handling overflow and sizing issues

After completing this module, students will be able to:

  • Understand the CSS box model
  • Correctly size and align elements
  • Prevent common layout overflow issues
  • Apply border-box sizing effectively

CSS positioning

In this module, you will learn modern layout and positioning systems for building responsive interfaces.

Lessons

  • Flexbox
  • CSS Grid and subgrid
  • Absolute and relative positioning
  • Anchor positioning
  • Layout strategies and positioning trade-offs

Lab: Position navigation menus
Lab: Create responsive card layouts
Lab: Position forms and context menus

After completing this module, students will be able to:

  • Build layouts using Flexbox and Grid
  • Choose appropriate positioning techniques
  • Create structured and responsive page layouts
  • Position interactive UI elements effectively

CSS preprocessors

In this module, you will be introduced to preprocessors for improving CSS maintainability and scalability.

Lessons

  • Introduction to Sass/SCSS
  • Nested styling
  • Variables and operations
  • Mixins and reusable styles
  • Build tool integration

Lab: Convert CSS to SCSS
Lab: Reuse and organize styles with Sass

After completing this module, students will be able to:

  • Use Sass features to simplify CSS development
  • Organize reusable styles efficiently
  • Integrate preprocessors into a frontend workflow
  • Understand the role of build tools

CSS responsiveness

In this module, you will learn techniques for building responsive and adaptive user interfaces.

Lessons

  • Responsive units (rem, em, vh, vw)
  • Media queries
  • Container queries
  • Responsive layouts
  • Accessibility considerations for responsiveness

Lab: Make webpages mobile-friendly
Lab: Create responsive card layouts
Lab: Implement a hamburger menu

After completing this module, students will be able to:

  • Build responsive user interfaces
  • Use media and container queries effectively
  • Choose appropriate CSS units
  • Improve accessibility on different devices

CSS animations and transitions

In this module, you will learn how to create smooth and performant animations for web applications.

Lessons

  • CSS transitions
  • Keyframe animations
  • Timing functions and easing
  • View transitions
  • Performance considerations and GPU acceleration

Lab: Add transitions and animations to the application

After completing this module, students will be able to:

  • Create animations using CSS
  • Apply smooth transitions to UI interactions
  • Understand animation performance considerations
  • Use modern browser animation capabilities

CSS organization

In this module, you will learn strategies for organizing and scaling CSS in larger applications.

Lessons

  • CSS architecture approaches
  • BEM methodology
  • Scoped CSS
  • Tailwind CSS
  • Utility-first CSS concepts
  • Comparing CSS organization strategies

Lab: Style pages using Tailwind CSS
Lab: Create responsive layouts using utility classes

After completing this module, students will be able to:

  • Organize CSS for maintainability
  • Understand common CSS architecture patterns
  • Work with utility-first CSS frameworks
  • Apply scalable styling strategies

Web API: Storage

In this module, you will learn how browsers can persist data locally.

Lessons

  • Local Storage
  • Session Storage
  • JSON serialization and deserialization
  • Introduction to IndexedDB

Lab: Store and retrieve application data
Lab: Persist data locally

After completing this module, students will be able to:

  • Store data in the browser
  • Work with JSON in JavaScript
  • Understand browser storage capabilities
  • Choose appropriate storage approaches

Web API: fetch

In this module, you will learn how web applications communicate with backend services.

Lessons

  • Using fetch() for HTTP requests
  • GET, POST and DELETE requests
  • Working with JSON APIs
  • Error handling
  • Loading indicators and user feedback

Lab: Build a small backend using json-server
Lab: Retrieve and persist data using fetch()
Lab: Implement loading and error states

After completing this module, students will be able to:

  • Communicate with backend services
  • Use fetch() effectively
  • Handle asynchronous operations
  • Improve application usability during network operations

Realtime communication

In this module, you will learn how modern web applications implement realtime features.

Lessons

  • Polling and long polling
  • WebSockets
  • Introduction to WebRTC and Server-Sent Events
  • Realtime communication patterns

Lab: Create a WebSocket server
Lab: Broadcast updates between browser tabs
Lab: Update the UI in realtime

After completing this module, students will be able to:

  • Understand realtime communication techniques
  • Work with WebSockets
  • Implement realtime updates in web applications
  • Handle WebSocket lifecycle events

Intro to testing

In this module, you will be introduced to modern frontend testing tools and strategies.

Lessons

  • Unit, integration and end-to-end testing
  • Vitest
  • Playwright
  • Mocking and test doubles
  • Testing user interactions and accessibility

Lab: Create integration tests with Vitest
Lab: Create end-to-end tests with Playwright

After completing this module, students will be able to:

  • Understand frontend testing strategies
  • Write automated tests for web applications
  • Test user interactions and browser behavior
  • Use modern testing tools effectively

Schedule

Start dateDurationLocation
July 20, 2026July 21, 2026
2 days
Veenendaal / Remote
This is a hybrid training and can be followed remotely. More information
Veenendaal / Remote
This is a hybrid training and can be followed remotely. More information
Sign up
August 17, 2026August 18, 2026
2 days
Utrecht / Remote
This is a hybrid training and can be followed remotely. More information
Utrecht / Remote
This is a hybrid training and can be followed remotely. More information
Sign up
September 21, 2026September 22, 2026
2 days
Veenendaal / Remote
This is a hybrid training and can be followed remotely. More information
Veenendaal / Remote
This is a hybrid training and can be followed remotely. More information
Sign up

All courses can also be conducted within your organization as customized or incompany training.

Our training advisors are happy to help you provide personal advice or find Incompany training within your organization.

Trainers

Prior knowledge courses

Follow-up courses

"The instructor was clearly very experienced and had a lot of knowledge about the subject."
Mika
  • icon

    Hoge waardering

  • icon

    Praktijkgerichte trainingen

  • icon

    Gecertificeerde trainers

  • icon

    Eigen docenten