
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Found 2202 Articles for HTML

4K+ Views
In this article we are going to learn about is it possible to have an HTML canvas element in the background of my page. You might try adding a CSS style with a position: fixed (or absolute, if applicable) to the canvas so that any material that comes after it will sit on top of it. To get better understanding on is it possible to have an HTML canvas element in the background of my page, let’s look into the following examples… Example 1 In the following example we are using the position: absolute to apply CSS style to the ... Read More

458 Views
In this article we are going to learn is how can I invoke encode URI component from angularjs template in HTML. Each time a certain character appears in a URI, the encodeURIComponent() function replaces it with one, two, three, or four escape sequences that represent the character's UTF-8 encoding (will only be four escape sequences for characters composed of two "surrogate" characters). Syntax Following is the syntax for encodeURIComponent encodeURIComponent(uriComponent) Uricomponent Any object, including a string, number, boolean, null, or undefined. The uriComponent is transformed to a string before encoding. Let’s look into the following example for getting better ... Read More

454 Views
The task we are going to perform in this article is about I need a client side browser database in HTML5 what are my options. Before diving into the article let’s have a look. HTML5 introduces two mechanisms, similar to HTTP session cookies, for storing structured data on the client side. The two storages are session storage and local storage and they would be used to handle different situations. You can use local storage in HTML5 for this purpose. The Local Storage is designed for storage that spans multiple windows and lasts beyond the current session. Local Storage The Web ... Read More

2K+ Views
A variable is represented by the var element. This could be a real variable in a programming or mathematical expression, an identifier for a constant, a function parameter, Depending on what you want to achieve, but it appears that your possibilities are − Use microdata, such as a product's pricing, as an example. If you want to emphasise the price without implying that it is more significant, use . If the price is crucial, such as the entire cost of an itemised receipt, use the style. If you require an element to design the pricing differently, use ... Read More

397 Views
In this article, we are going to perform can the HTML5 canvas element be created from the canvas constructor. We can achieve the task by using element in HTML. Before we dive into the examples, let’s look into the definition and usage of element in HTML. The Canvas Api useful for drawing graphics via javascript and htmlelement.It can be applied to animation, game graphics, data visualisation, photo editing, and real-time video processing, among other things. The majority of the Canvas API's attention is on 2D visuals. The WebGL API renders hardware-accelerated 2D and 3D visuals and also makes ... Read More

2K+ Views
This article will teach us that button HTML tags outside of a form are valid. Before we get started, let's talk a little about the HTML tag. HTML tag An HTML is made using the element. Between the opening and closing tags, any text will be shown as text on the button. Syntax Following is the syntax for HTML tag Anywhere in the document body where text-level markup is allowed, a button element is acceptable. such an element is not required to be related to a form element. Although a button element has a ... Read More

1K+ Views
Every time a new version of HTML is released, additional features and support for various website elements are introduced. The most recent HTML version, HTML5, is utilised on all current web pages. While bringing new markups and APIs for complex web applications, HTML5 also supports the currently used markups. Why To Use HTML5 HTML5 was developed to handle multimedia elements in complicated online applications. More new tags and support elements, including form, semantic characteristics, and several more, are offered. HTML5 has a number of elements that make it user−friendly, including − Cleaner code structure − Only the div tag was ... Read More

3K+ Views
The task we are going to perform in this article is about HTML5 canvas drawings like lines are looking blurry. We observe blurry effects because different device’s pixel ratios are varied. The browser or device using to view the canvas frequently affects how blurry the image is. The gadget Pixel Ratio of Window interface returns the proportion of the display device's physical pixels to its CSS pixels for resolution. This number can also be understood as the proportion of physical to CSS pixels, or the size of one pixel to another pixel. Let’s dive into the following examples to ... Read More