Instructional Video4:59
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Insert Adjacent Element and Insert Adjacent HTML

Higher Ed
This video introduces the insertAdjacentElement() and insertAdjacentHTML() methods, which provide flexible ways to insert elements or HTML content at specific positions relative to an element. You will learn to use these methods to...
Instructional Video4:16
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Children Nodes

Higher Ed
In this video, we will explore the children property, which provides access to the child nodes of an element. We will retrieve child elements, text nodes, or other types of nodes within an element. Understanding children nodes is...
Instructional Video4:43
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Parent Nodes

Higher Ed
This video focuses on traversing the DOM tree to access the parent nodes of elements. You will learn about the parentNode property to navigate to the immediate parent of an element, useful for traversing up the DOM tree, finding specific...
Instructional Video5:37
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Get Methods

Higher Ed
In this video, we will discover various DOM methods to retrieve elements from the webpage, which include getElementById, getElementsByClassName, getElementsByTagName, and querySelector. You will learn to use these methods effectively to...
Instructional Video9:14
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Other Objects

Higher Ed
This video explores other important objects in the DOM, such as the Document object, Window object, and Navigator object. You will learn about their properties and methods, and how they can be used to access and manipulate different...
Instructional Video3:03
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Append Child and Insert Before

Higher Ed
In this video, we will explore the appendChild() and insertBefore() methods to insert elements into the DOM tree, to append a new element as a child of an existing element, or insert it before a specified reference element, which is...
Instructional Video3:04
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Create Element Text Node

Higher Ed
This video focuses on creating and working with text nodes in the DOM. You will learn to use the document.createTextNode() method to create a new text node, which can be inserted as a child of an element. Understanding how to create and...
Instructional Video3:25
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - First and Last Child

Higher Ed
This video focuses on accessing the first and last child elements of a parent element using the firstElementChild and lastElementChild properties. You will learn to retrieve the first and last child elements specifically, excluding any...
Instructional Video4:12
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Model

Higher Ed
In this video, you will learn about the Document Object Model (DOM), a programming interface for HTML and XML documents, and understand how the DOM represents the structure of a webpage as a hierarchical tree of objects and interact with...
Instructional Video2:40
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Box Shadow

Higher Ed
In this video, we will master the box shadow property in CSS3 to add depth and shadow effects to elements. You will learn to control the size, spread, and color of the shadow to create visually appealing designs with depth and dimension.
Instructional Video2:49
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Opacity and Important

Higher Ed
In this video, you will learn how to adjust the opacity of elements in CSS3 using the opacity property. We will understand how to make elements transparent or semi-transparent to create interesting visual effects.
Instructional Video4:15
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Elements

Higher Ed
In this video, we will uncover the magic of CSS3 pseudo-elements and learn to create dynamic and engaging content. We will discover pseudo-elements such as ::before and ::after, and understand how they can be used to insert content...
Instructional Video9:55
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Classes Part 1

Higher Ed
In this video, we will discover the power of pseudo-classes in CSS3 and learn to target elements based on specific states or interactions. We will explore commonly used pseudo-classes such as :hover, :active, and :focus, and understand...
Instructional Video2:16
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Float

Higher Ed
In this video, we will delve into CSS3's float property and learn to create floating elements that can be positioned to the left or right of their containing elements. We will understand the intricacies of the float property and its...
Instructional Video2:19
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Display

Higher Ed
In this video, we will explore the power of CSS3's display property and learn how to control the layout and visibility of elements on your webpages. We will discover different display values such as block, inline, and flex, and...
Instructional Video2:40
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Text Transform

Higher Ed
In this video, we will discover the power of text transformation using CSS3's text-transform property. You will learn to convert text to uppercase, lowercase, or capitalize the first letter of each word, and apply these transformations...
Instructional Video5:37
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Margin and Padding

Higher Ed
In this video, we will explore the margin and padding properties in CSS3 and how they affect the spacing around elements. You will learn to set margins and padding values for individual sides or all sides and understand the box model and...
Instructional Video4:32
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Height and Width

Higher Ed
In this video, we will understand the height and width properties in CSS3 and how they are used to control the size of elements. You will learn about different measurement units and how to set fixed and responsive dimensions.
Instructional Video8:13
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Selectors and Colors in CSS3

Higher Ed
In this video, we will dive into the world of selectors and colors in CSS3, different types of selectors, and how they can be used to target specific HTML elements. We will explore the wide range of color options available in CSS3.
Instructional Video1:45
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - What Are Break Tags?

Higher Ed
In this video, we will understand the purpose of break tags in HTML to introduce line breaks and create vertical spacing within your content. You will learn to use break tags effectively for better readability.
Instructional Video2:00
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - HTML5 Attributes

Higher Ed
In this video, you will learn about HTML5 attributes and how they enhance the functionality and behavior of HTML elements. We will discover commonly used attributes such as id, class, src, href, and more to customize and control the...
Instructional Video4:45
Curated Video

Concurrent and Parallel Programming in Python - Multiprocessing Multiple Varying Arguments

Higher Ed
In the previous video, we have seen how to provide additional arguments using a partial library in the functools built-in tool; you will now learn to add different elements such as a power list instead.
Instructional Video24:20
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - LeetCode Example Solution - Trapping Rainwater

Higher Ed
In this video, we will discuss the solution to the exercise on trapping rainwater from the previous video. This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series "JavaScript Mastery from...
Instructional Video2:52
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Virus Detection Algorithm with Asymmetric Arrays

Higher Ed
This is an exercise video where you will work on a virus detection algorithm with the help of asymmetric arrays. This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series "JavaScript Mastery...