How to Create a Calculator with Javascript, HTML and CSS
Calculator is one of the basic project a javascript or any other programming newbie should probably know howto create. It is a basic project becasue it entails mathematical operations. All…
Science, Technology & Business
Calculator is one of the basic project a javascript or any other programming newbie should probably know howto create. It is a basic project becasue it entails mathematical operations. All…
The HTML <applet> tag defines an applet and it is used for embedding a Java applet within an HTML document. Note that It is not supported in HTML5. Example <!DOCTYPE…
The HTML <abbr> tag is used for showing and identifying an abbreviation sentence such as HTML. Example <!DOCTYPE html> <html> <head> <title>HTML abbr Tag</title> </head> <body> <p> <abbr title=”Cascading Style…
The HTML <area> tag is used for setting and specifying an area in an image map. Example<!DOCTYPE html> <html> <head> <title>Scholars HTML area Tag</title> </head> <body> <img src=/images/testmap.gif alt=”testmap” border=”0″…
The HTML <audio> tag is used to embed audio files in web pages. Example <!DOCTYPE html> <html> <head> <title>Scholars HTML audio Tag Examples</title> </head> <body> <p>Click to play…</p> <p>(Song: Merila…
The <div> element can be defined as a block level element used for grouping HTML elements. The HTML <div> tag is a block-level element, while the HTML <span> element is…
You can design your webpage to be in multiple columns by keeping your content in middle column and you can use left column to use menu and right column can…
HTML Layout or Webpage Layout can be defined as the framework, structure or layout of a Webpage. There are many ways to design a webpage layout. But the easiest and…
The <noscript> tag is used to provide alternative info or message to the visitors whose browsers don’t support scripts or those who disabled script option in their browsers settings. JavaScript…
Hiding script from older browser can be needed or useful for some older browsers that do not understand JavaScript or VBScript, so that these browsers won’t print the script code as…
The HTML <script> tag is used to add either external script file or to sets internal script for the HTML document. Example: <!DOCTYPE html> <html> <head> <title>HTML script Tag Example</title>…
The HTML <link> tag is used to indicate the relationships between the current document and external resource. In the Example below, we link an external style sheet file available in…
The HTML <base> Tag The HTML <base> tag is used for defining the base URL for all relative URLs in a page, so that all the other URLs will be…
The HTML <title> Tag The HTML <title> tag is used for assigning the title of the HTML document. Example: <!DOCTYPE html> <html> <head> <title>Scholars Globe Home</title> </head> <body> <p>Scholars Globe</p>…
An HTML marquee is a scrolling piece of text displayed either horizontally across or vertically down your webpage depending on how you specified it. This is formed by using HTML…
You have two simple steps: 1. Insert the HTML code in the search area on your webpage from <form action> element. 2. Create a php file, copy and paste the…
The <object> element allows HTML developers set everything needed by an object for its presentation by a user agent. HTML 4 brings in the <object> element, which provides an all-purpose solution…
How to Add Background Audio to a WebpageThe Tag <bgsound> is used to add audio soundtrack that plays in the background of your webpage. This tag has only two attributes…
To add media files to a Webpage, video or sound to your web site, you need the HTML tag called <embed>. The <embed> tag is used for embedding media files…
Form controls can be hidden to hide data inside the page for use later on the same page or on a different page. Example <!DOCTYPE html> <html> <head> <title>Scholars Globe…