Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Web Storage

What is HTML Web Storage?

Web storage enables web applications to store data locally in the user’s browser.

Before HTML5, application data was typically stored in cookies, which were sent with every server request. Web storage offers improved security and performance, allowing larger amounts of data (at least 5MB) to be stored locally without impacting website performance.

Unlike cookies, data stored in web storage is not transferred to the server, and each origin (domain and protocol) can store and access the same data across all pages.

Browser Support

The numbers in the table indicate the earliest browser version that fully supports Web Storage.

WhatsApp Image 2024-07-11 at 2.38.33 PM

HTML Web Storage Objects

HTML web storage offers two objects for client-side data storage:

  • window.localStorage: Stores data without an expiration date.
  • window.sessionStorage: Stores data for the duration of one session (data is lost when the browser tab is closed).

Prior to utilizing web storage, verify browser support for localStorage and sessionStorage.

if (typeof(Storage) !== “undefined”) {
  // Code for localStorage/sessionStorage.
} else {
  // Sorry! No Web Storage support..