All Posts tagged as "frontend web development"

Using cookies in Javascript

Cookies allow websites to store information on the user browsers. They are usually used to store website session related information.

Read

Adding drag and drop to list items

In order to drag and drop HTML list items, we need to set the draggable attribute of the list items to true. We also need to define event handlers on the list items for the following events: dragstart, drop and dragover.

Read

What are CSS Media Queries

CSS Media Queries allow us to use CSS rules for particular media

Read

What are CSS Grid Systems

CSS Grid Systems are CSS style-sheets that contain commonly used CSS classes. These CSS classes can be applied to HTML elements such as div tags. They provided functionalities such as tables and grids. The CSS classes are responsive so they work on devices of different sizes.

Read