Get the Most Out of Canva

Zahwah Jameel
Updated on 19-Feb-2021 10:19:50

191 Views

What is the use of Canva?Canva is a versatile designing tool that helps you create compelling graphic designs or images. Entrepreneurs and small and large businesses use Canva as a designing tool for various purposes. It is a useful tool from social media managers and digital marketers to client success managers and media teams.The best thing about Canva is that it is beginner-friendly. You don't need to have skills or be a designer to use them for growing your business. Unlike photoshop, it helps you create graphic designs within minutes without extra expenses.What can you do using Canva?You can create ... Read More

What is Canva and Its Main Features

Zahwah Jameel
Updated on 19-Feb-2021 10:14:51

20K+ Views

What is Canva?Canva is an online graphic designing tool with several functions and features that even beginners can use. It allows anyone to create fascinating designs for personal and professional use. It is specially made for people who are not graphic designers and who cannot invest in hefty amounts to get professional designs.Whether you are making a resume or designing an invitation card, this platform covers everything. For additional features, you can also get the paid version available.What can I design with Canva?You can use Canva for designing anything you need. You can create a custom design from scratch or ... Read More

HTML DOM getNamedItem Method

AmitDiwan
Updated on 19-Feb-2021 09:25:22

199 Views

The HTML DOM getNamedItem() method is used for getting the attribute node with a given name as a NamedNodeMap object. To get that specific attribute node we have to call this method only upon the attributes property since the attribute property returns a list from which we can filter a specific attribute using getNamedItem() method.SyntaxFollowing is the syntax for the getNamedItem() method −namednodemap.getNamedItem(nodename)Here, nodename is a mandatory parameter value of type string indicating the name of the node present in the namedNodeMap.ExampleLet us look at an example for the getNamedItem() method −Live Demo getNamedItem() example USERNAME: ... Read More

HTML DOM HashChangeEvent

AmitDiwan
Updated on 19-Feb-2021 09:17:50

168 Views

The HTML DOM HashChangeEvent is a type of interface used for representing those events that fire whenever the # part of the URL has been modified.PropertiesFollowing are the properties for the HashChangeEvent −PropertyDescriptionnewURLTo return the document URL after the hash has been modified.oldURLTo returns the document URL before the hash was changedSyntaxFollowing is the syntax for HashChangeEvent.event.eventPropertyHere, eventProperty is one of the above two properties.ExampleLet us look at an example for the HashChangeEvent.Live Demo HashChangeEvent example Change the hash by clicking the below button CHANGE    function changeHash() {       location.hash = "NEWHASH";   ... Read More

HTML DOM Header Object

AmitDiwan
Updated on 19-Feb-2021 09:16:25

2K+ Views

The HTML DOM header object is associated with the HTML element that introduced in HTML 5. Using the header object we can create and access element using the createElement() and getElementById() method respectively.SyntaxFollowing is the syntax for −Creating a header object −var p = document.createElement("HEADER");ExampleLet us look at an example for the HTML DOM header object −Live Demo Header object example Create a header element by clicking the below button CREATE    function headerCreate() {       var h = document.createElement("HEADER");       document.body.appendChild(h);       var h2 = document.createElement("H2");     ... Read More

HTML DOM Heading Object

AmitDiwan
Updated on 19-Feb-2021 09:15:01

528 Views

The HTML DOM Heading object is associated with the HTML heading elements ranging from to . Using the heading object we can create and access heading element with the createElement() and getElementById() method respectively.SyntaxFollowing is the syntax for −Creating a Heading object −var p = document.createElement("H1");ExampleLet us look at an example for the Heading object −Live Demo Heading object example Create a h1 element by clicking the below button CREATE    function createH1() {       var h = document.createElement("H1");       var txt = document.createTextNode("H1 element has been created");       h.appendChild(txt); ... Read More

HTML DOM Input Number Type Property

AmitDiwan
Updated on 19-Feb-2021 09:11:44

248 Views

The HTML DOM Input number type property is associated with the input element having its type=”number”. It will always return number for the input number element.SyntaxFollowing is the syntax for number type property −numberObject.typeExampleLet us look at an example for the HTML DOM Input Number type property −Live Demo Input Number type property PHONE NO: Get the above element type by clicking the below button Get Type    function getType() {       var t = document.getElementById("NUMBER1").type;       document.getElementById("Sample").innerHTML = "The type for the input field is : "+t;    } ... Read More

HTML DOM Input Number Value Property

AmitDiwan
Updated on 19-Feb-2021 09:10:08

417 Views

The HTML DOM Input number value property is associated with the input element having type=”Number” and having the value attribute. This property is used for returning the value of input element value attribute or to set it. This property is used for specifying a default value for elements and it also changes its value to user input.SyntaxFollowing is the syntax for −Setting the value property −numberObject.value = number;Here, number is used for specifying the value for the number field.ExampleLet us look at an example for the input Number value property −Live Demo Input Number Value property PHONE NO: ... Read More

HTML DOM Input Password DefaultValue Property

AmitDiwan
Updated on 19-Feb-2021 09:07:25

314 Views

The HTML DOM Input Password defaultValue property is used for setting or getting the defaultValue of a password field. The defaultValue of an element is the value assigned to the value attribute. The difference between value property and defaultValue property is that the defaultValue property retains the original default value specified while the value property change based on the user input in the input field.SyntaxFollowing is the syntax to set the defaultValue property −passwordObject.defaultValue = valueHere, “value” is the password field default value.ExampleLet us look at an example for the Input Password defaultValue property −Live Demo Input Password ... Read More

HTML DOM Input Password Disabled Property

AmitDiwan
Updated on 19-Feb-2021 09:05:34

186 Views

The HTML DOM Input Password disabled property is used for setting or returning whether the password field is disabled or not. It uses boolean values with true representing the element should be disabled and false otherwise. The disabled property is set to false by default. The disabled element is greyed out by default and is unclickable.SyntaxFollowing is the syntax for −Setting the disabled property −passwordObject.disabled = true|false;Here, true=password field is disabled and false=the password field is not disabled. It is false by default.ExampleLet us look at an example for the Input password disabled property −Live Demo Input Password ... Read More

Advertisements