HTML Creater
html creater When it comes to web development then among all the languages that are widely used for the same, the name of HTML comes first.
Hyper Text Markup language is considered as the most sophisticate and user-friendly web programming language worldwide. This language is one of the hundreds of thousands of markup languages ever created by the computer programmers. As HTML is a human created language, one can easily understand what the subject, predicate and object is. However, the primary advantages of using the HTML language in
20/03/2019
29/06/2015
The getCurrentPosition() Method - Return Data
The getCurrentPosition() method returns an object if it is successful. The latitude, longitude and accuracy properties are always returned. The other properties below are returned if available.
Property Description
coords.latitude The latitude as a decimal number
coords.longitude The longitude as a decimal number
coords.accuracy The accuracy of position
coords.altitude The altitude in meters above the mean sea level
coords.altitudeAccuracy The altitude accuracy of position
coords.heading The heading as degrees clockwise from North
coords.speed The speed in meters per second
timestamp The date/time of the response
Using HTML Geolocation
Use the getCurrentPosition() method to get the user's position.
The example below is a simple Geolocation example returning the latitude and longitude of the user's position:
var x = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude +
"Longitude: " + position.coords.longitude;
}
16/05/2015
16/05/2015
HTML Input AttriThe value Attribute
The value attribute specifies the initial value for an input field:
Example
First name:
Last name:
butes
New Semantic/Structural Elements
HTML5 offers new elements for better document structure:
Tag Description
Defines an article in the document
Defines content aside from the page content
Defines a part of text that might be formatted in a different direction from other text
Defines additional details that the user can view or hide
Defines a dialog box or window
Defines a caption for a element
Defines self-contained content, like illustrations, diagrams, photos, code listings, etc.
Defines a footer for the document or a section
Defines a header for the document or a section
Defines the main content of a document
Defines marked or highlighted text
Defines a command/menu item that the user can invoke from a popup menu
Defines a scalar measurement within a known range (a gauge)
Defines navigation links in the document
Defines the progress of a task
Defines what to show in browsers that do not support ruby annotations
Defines an explanation/pronunciation of characters (for East Asian typography)
Defines a ruby annotation (for East Asian typography)
Defines a section in the document
Defines a visible heading for a element
Defines a date/time
Defines a possible line-break
New Form Elements Tag Description
Defines pre-defined options for input controls
Defines a key-pair generator field (for forms)
Defines the result of a calculation
Click here to claim your Sponsored Listing.
Category
Telephone
Website
Address
Surat
395009
Opening Hours
| Monday | 10am - 7pm |
| Tuesday | 10am - 7pm |
| Wednesday | 10am - 7pm |
| Thursday | 10am - 7pm |
| Friday | 10am - 7pm |
| Saturday | 10am - 7pm |
20/07/2016