Skip to main content

Posts

Showing posts from July, 2022

Javascript For Web Development

           Basic Javascript For Web Development What will you learn in this JavaScript Tutorial for Beginners? In this JavaScript rudiments for novices instructional exercise, you will find out about certain basics of JavaScript like Variables, Arrays, loops, Conditional Statements, Cookies, and so on, and some high level JavaScript ideas like DOM, down to earth code models, JavaScript Unit testing system, calculatios, and so on. Are there any prerequisites for this JavaScript Tutorial? Nothing! This is an outright JavaScript fledgling manual for learn JavaScript with models. In any case, assuming that you have some fundamental information on HTML and CSS, it will assist you with learning quicker and all the more productiviely. Who is this JavaScript Tutorial for? This JavaScript for fledglings instructional exercise is for understudies who need to find out about Web Application improvement and programming advancement. This instructional exercise is additio...

CSS Selectors Tutorial

 CSS Selectors To Apply CSS to an element you need to select it. CSS provides you with a number of different ways to do this, and you can explore them in this module. CSS Selectors are used to "find" (or select) the HTML elements you want to style. We can divide selectors into five categories. Simple Selectors Combination-Selectors Pseudo-Class Selectors Pseudo-Element Selectors Attribute Selectors CSS selectors allow you to select and style HTML elements selectors are used to find elements based on their ID , classes , types , attributes , values of attributes and much more .   let’s go through the most common selectors the element selector selects elements based on the element name , this is the CSS selector it is set to P (Selector) means it will select all P elements on the page like this so it Styles all P elements to be centre-aligned and have a red colour well if we add another element that is not a P element it will not be affected by the styl...