shivam November 9, 2022 0

What are basic Properties in CSS?

We have four basic propertues in CSS(Cascading style sheet) Text Properties List Properties Border Properties Font Properties Text properties PROPERTY Description color Sets the color of a text line-height Sets…

shivam November 9, 2022 0

What is comment in CSS?

CSS comments are generally written to explain your code. It is very helpful for the users who reads your code so that they can easily understand the code. Comments are…

shivam November 9, 2022 0

How to add CSS in HTML?

CSS is added to HTML pages to format the document according to information in the style sheet. There are three ways to insert CSS in HTML documents. Inline CSS Internal…

shivam November 9, 2022 0

What is CSS and How to use CSS?

Cascading style sheets (css) is a style sheet language used for describing the look and formatting of a document written in markup language,  It provides an additional feature to HTML.…

shivam November 8, 2022 0

What is functions in javascript?

A function is a set of statements that take inputs, do some specific computation, and produce output. The idea is to put some commonly or repeatedly done tasks together and make…

shivam November 8, 2022 0

What is alert() in javascript?

The alert() method in JavaScript is used to display a virtual alert box. It is mostly used to give a warning message to the users. It displays an alert dialog box that…

shivam November 7, 2022 0

What are conditional statement in javascript?

There are multiple different types of conditionals statement “if” statement “if else ” statement “if else if” statement “if” statement The if statement is the fundamental control statement that allows JavaScript to make…

shivam November 5, 2022 0

What Are Element Access Methods In Javascript?

In javascript, we have so many methods for accessing elements but, There are five important or common methods- document.getElementByid document.getElementByTageName document.getElementByClassName document.queryselector document.queryselectorall 1. Document.getElementByid The document method getElementByid() returns an element object representing the element…

shivam November 5, 2022 0

How to comment in javascript?

Javascript comments explain the code design. They can also be used to prevent the execution of a section of code if necessary. Comments are ignored while the compiler executes the…

shivam November 5, 2022 0

What is JAVASCRIPT, How to add JAVASCRIPT ?

JavaScript is object-oriented programming language which is used by several websites for scripting the webpages. It is an interpreted, full-fledged programming language that enables dynamic interactivity on websites when applied…