HTML Geolocation API

To locate the position of html geolocation API is used, it is done through different data collection mechanisms. Generally this API is used for restaurants and local businesses. It is device specific API, So browser/device geolocation support is must in order to use it. Note: For privacy reasons, user is asked for permission to allow … Read more

HTML Select Attributes

Select element defines the drop-down list of options it allow user to select from different options. The options in the drop-down list can be given using <option> element. Now lets see the most commonly used select attributes . Select Attributes Attribute Description name This attribute is used to define the name for drop down list … Read more

HTML Input Attributes

There are different html input attributes of html input element which can be used to modify the input element. Lets see different input attributes below. HTML Input Attributes: Attribute Description value Defines default value for input field. size Defines the size(width) of input field. pattern Defines the regular expressions against which the input value is … Read more

HTML Layout

HTML layout is used to display the web content in multiple columns just like a magazine and newspaper. It is basically a part of designing that deals with arrangement of visual components of webpage. For optimum effectiveness, the layout establishes the overall appearances of page to achieve a smooth flow of information. Note: The html … Read more

HTML Drag and Drop API

HTML drag and drop API is used for dragging an element from a location and dropping it to another location. The element can be dropped on another application. This API is very useful to copy, delete or reorder html elements by few mouse clicks only. Lets discuss few drag and drop events below to understand … Read more

HTML Web Storage API

In prior html5 versions the application data could be stored using cookies only, but html5 introduced web storage API. HTML web storage API is used to store and retrieve data locally in the user’s browser in form of key/value pairs just like cookies but, it is better than cookies because it is more secure and … Read more

HTML Web Worker API

Scripts in HTML pages cause the page to become unresponsive until the script is completely executed, which effects the performance of the page. HTML Web Worker is fast and easy way for web content to run the scripts in the background. Tasks can be performed by the web worker threads without interfering with the user … Read more

HTML Using Notepad++

It is text based html editor. Web pages can be designed using professional editors like sublime, VS Code. However for learning html is better to use simple text editor like Notepad++ . Following are steps to create webpage using notepad++: Step 1: Open Notepad++ First of all open notepad++ on your PC, if you do … Read more

HTML SSE API

The way data is streamed from the server to the client is standardized by SSE(server-sent events).The SSE API is used for automatic updates of web page from server. Prior SSE API the web page have to check, if there were any updates available, but with SSE API the updates come automatically. SSE API: Check Browser … Read more

HTML Tutorial

HTML(Hypertext Markup Language) is the most commonly and widely used language to write webpages. It is being widely used to format web pages with the avail of different tags available in HTML language. Basically it is known as backbone of webpages. Hypertext is a text available on a webpage that links the webpages together. It is … Read more