Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Insert Adjacent Element and Insert Adjacent HTML
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Children Nodes
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Parent Nodes
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Get Methods
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Other Objects
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Append Child and Insert Before
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Create Element Text Node
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - First and Last Child
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Model
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Box Shadow
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Opacity and Important
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Elements
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Classes Part 1
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Float
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Display
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Text Transform
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Margin and Padding
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Height and Width
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Selectors and Colors in CSS3
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - What Are Break Tags?
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - HTML5 Attributes
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...
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Multiple Varying Arguments
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.
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - LeetCode Example Solution - Trapping Rainwater
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Virus Detection Algorithm with Asymmetric Arrays
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...