×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Net Meeting
Tutorix
Login
Packages
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Library
Videos
Q/A
eBooks
Login
Library
Videos
eBooks
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Selected Reading
UPSC IAS Exams Notes
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Arjun Thakur
has Published
1261
Answers
HTML DOM Anchor hash Property
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 21-Jun-2019 17:01:45
The HTML DOM Anchor hash property is used to set or return the anchor part of the href attribute value. The part of the URL after the # is what we call the anchor part of a link.Following is the syntax to set the hash property −anchorObject.hash = anchor_partAbove, anchor_part ...
Read More
HTML canvas shadowBlur Property
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 21-Jun-2019 16:16:32
The shadowBlur property of the HTML canvas is used to set the blur level for shadows. The default value is 0. The <canvas> element allows you to draw graphics on a web page using JavaScript. Every canvas has two elements that describes the height and width of the canvas i.e. ...
Read More
HTML DOM Address Object
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 21-Jun-2019 16:04:24
Use the address object to represent the <address> element. Let us see an example to create <address> −Example Live Demo<!DOCTYPE html> <html> <body> <h2>Heading Two</h2> <p>Create address element</p> <button onclick="display()">Display</button> <script> function display() { var a = document.createElement("Address"); var node = document.createTextNode("ABC Inc, P ...
Read More
HTML DOM addEventListener() Method
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 21-Jun-2019 15:54:20
The HTML DOM addEventListener() method is used to attach an event handler to the specified element.Following is the syntax −element.addEventListener(event, function, capture)Above, the parameters include −event: The name of the event. Required.function: The function to run when the event occurs. Required.capture: Whether the event should be executed in the capturing ...
Read More
HTML <dfn> Tag
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 21-Jun-2019 15:44:20
The <dfn> tag in HTML is used to define the instance of a term in HTML, which is the initial use of a term.Let us now see an example to implement the <dfn> tag −Example Live Demo<!DOCTYPE html> <html> <body> <h2>Subjects in MCA</h2> <p><dfn title="Master of Computer Applications">MCA</dfn> is a 3-year ...
Read More
HTML canvas shadowColor Property
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 21-Jun-2019 15:33:15
The shadowColor property of the HTML canvas is used to set the color for shadow. The default value is #000000.Following is the syntax −ctx.shadowColor=color;Above, set the color for shadow.Let us now see an example to implement the shadowColor property of canvas −Example Live Demo<!DOCTYPE html> <html> <body> <canvas id="newCanvas" width="600" height="350" style="border:2px solid orange;"> </canvas> <script> ...
Read More
HTML <dl> Tag
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 20-Jun-2019 14:28:57
The dl element in HTML is used to define description list. In HTML5, the <dl> is used to define a description list, whereas the <dl> in HTML4 defined definition list.Let us now see an example to implement the <dl> tag −Example Live Demo<!DOCTYPE html> <html> <body> <h2>Sports</h2> <dl> <dt>Football</dt> ...
Read More
HTML currentTarget Event Property
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 20-Jun-2019 14:19:47
The currentTarget event property in HTML is used to get the element whose event listeners triggered the event.Following is the syntax −event.currentTargetLet us now see an example to implement the currentTarget event property −Example Live Demo<!DOCTYPE html> <html> <body> <h2>Get the element</h2> <p onclick="myFunction(event)">Click on this line to generate an alert ...
Read More
HTML <base> href Attribute
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 20-Jun-2019 14:08:46
The href attribute of the <base> element sets the base URL for all relative URLs. For example, base URL as https://example.com/tutorials for all the relative URLs like /html, /java, /jquery etc., which are eventually −https://example.com/tutorials/html https://example.com/tutorials/java https://example.com/tutorials/jqueryFollowing is the syntax −<base href="absolute_URL">Above, absolute _URL is the absolute url for the base ...
Read More
HTML <col> Tag
HTML
Web Development
Front End Technology
Arjun Thakur
Published on 20-Jun-2019 13:50:51
The col tag in HTML is used to set column properties for each column. These columns should be within a <colgroup> element.Following is the attribute −span: The number of columns a <col> element should spanLet us now see an example to implement the col tag in HTML −Example Live Demo<!DOCTYPE html> ...
Read More
1
2
3
4
5
6
7
...
127
Next
Advertisements
Print
Add Notes
Bookmark this page
Report Error
Suggestions
Save
Close
Dashboard
Logout