Swarali Sree has Published 75 Articles

How to draw a quadratic curve on HTML5 Canvas?

Swarali Sree

Swarali Sree

Updated on 16-Dec-2021 09:59:35

744 Views

The HTML5 tag is used to draw graphics, animations, etc. using scripting. It is a new tag introduced in HTML5. The canvas element has a DOM method called getContext, which obtains rendering context and its drawing functions. This function takes one parameter, the type of context 2d.To draw a ... Read More

Should I use , , or for SVG files?
Swarali Sree

Swarali Sree

Updated on 26-Jun-2020 06:36:09

239 Views

To add SVG files, you can use , or element in HTML. Choose any one of them according to your requirement. Here’s how you can add SVG, elementUse the tag for images without interaction.The disadvantage is you cannot manipulate images with JavaScript. elementThe element is used ... Read More

How to use .svg files in a webpage?

Swarali Sree

Swarali Sree

Updated on 26-Jun-2020 06:33:18

529 Views

The svg files are Scalable Vector Graphics. You can add it to a web page using the , , or tag.The .svg file is to be referenced in the src attribute of the tag. Let’s see how to add it using the tag.You can try to ... Read More

How to set the width of the outline around an element with JavaScript?

Swarali Sree

Swarali Sree

Updated on 23-Jun-2020 13:36:14

83 Views

To set the outline width, use the outlineWidth property. You can try to run the following code to set the width of the outline around an element with JavaScript −ExampleLive Demo                    #box {             ... Read More

How to set the margins of an element with JavaScript?

Swarali Sree

Swarali Sree

Updated on 23-Jun-2020 13:19:12

146 Views

Use the margin property in JavaScript, to set the margins. You can try to run the following code to set the margins of an element with JavaScript −ExampleLive Demo           Set all four margins       This is demo text.                function display() {             document.getElementById("myID").style.margin = "30px 20px 40px 40px";          }          

How to set the font to be displayed in small capital letters with JavaScript?

Swarali Sree

Swarali Sree

Updated on 23-Jun-2020 12:56:31

107 Views

To set the font in small capital letters, use the fontVariant property.ExampleYou can try to run the following code to set the font to be displayed in small capital letters with JavaScript −Live Demo           Heading 1                This ... Read More

Which event occurs in JavaScript when a dragged element is dropped?

Swarali Sree

Swarali Sree

Updated on 23-Jun-2020 08:05:55

80 Views

The ondrop event triggers when a dragged element is dropped on the target. You can try to run the following code to learn how to implement ondrop event in JavaScript −ExampleLive Demo                    .drag {           ... Read More

What do you mean by database view and how do MySQL views work?

Swarali Sree

Swarali Sree

Updated on 22-Jun-2020 12:58:19

269 Views

A database view is nothing more than an SQL statement that is stored in the database with an associated name. A view is actually a composition of a table in the form of a predefined SQL query.A view can contain all rows of a table or select rows from a ... Read More

Why do we need to change the delimiter for creating a trigger?

Swarali Sree

Swarali Sree

Updated on 22-Jun-2020 12:15:45

372 Views

As we know that in MySQL we use the delimiter semicolon (;) to end each statement. The semicolon is the by default delimiter in MySQL. We need to change the delimiter, while creating a trigger, to tell MySQL that this is not the end of our trigger statement because we ... Read More

How can we nest a subquery within another subquery?

Swarali Sree

Swarali Sree

Updated on 22-Jun-2020 08:42:04

105 Views

If a subquery is nested inside another subquery then it is called a nested subquery. To make it understand we are creating the nested subquery from the following tables data −mysql> Select * from Cars; +------+--------------+---------+ | ID   | Name         | Price   | +------+--------------+---------+ ... Read More

1 2 3 4 5 ... 8 Next
Advertisements