Monday, 16 July 2012

How to change the direction of a text using Html

<!DOCTYPE html> <html> <body> <p> If your browser supports bi-directional override (bdo), the next line will be written from the right to the left (rtl): </p> <bdo dir="rtl"> Here is some Hebrew text </bdo> </body> </html>...

Monday, 16 July 2012 by Unknown · 0

How to abbreviate the words using Html

<!DOCTYPE html> <html> <body> <p>The <abbr title="What the hell">WTH</abbr> was founded in 1948.</p> <p>Can I get this <acronym title="as soon as possible">ASAP</acronym>?</p> <p>The title attribute is used to show the spelled-out version when holding the mouse pointer over the acronym or abbreviation.</p> </body> </html>...

by Unknown · 0

How to program contact information using html

<!DOCTYPE html> <html> <body> <address> Written by Bharathi priya<br /> <a href="mailto:us@example.org">Email us</a><br /> Address: Box 564, wooland<br /> Phone: +12 34 56 78 </address> </body> </html> ...

by Unknown · 0

Different computer-output tags in html

<!DOCTYPE html> <html> <body> <code>Computer code</code> <br /> <kbd>Keyboard input</kbd> <br /> <tt>Teletype text</tt> <br /> <samp>Sample text</samp> <br /> <var>Computer variable</var> <br /> <p><b>Note:</b> These tags are often used to display computer/programming code.</p> </body>...

by Unknown · 0

how to control line breaks and spaces in html(preformatted text)

<!DOCTYPE html> <html> <body> <pre> This is preformatted text. It preserves      both spaces and line breaks. </pre> <p>The pre tag is good for displaying computer code:</p> <pre> for i = 1 to 10      print i next i </pre> </body> </html> ...

by Unknown · 0

How to format the text in html

<!DOCTYPE html> <html> <body> <p><b>This text is bold</b></p> <p><strong>This text is strong</strong></p> <p><big>This text is big</big></p> <p><em>This text is emphasized</em></p> <p><i>This text is italic</i></p> <p><small>This text is small</small></p> <p>This...

by Unknown · 0

Poem problems in html

<!DOCTYPE html> <html> <body> <p>     My pen lies over the ocean.     My pen lies over the sea.     My pen lies over the ocean.       Oh, bring back my pen to me. </p> <p>Note that your browser ignores the layout!</p> </body> </html> Result will be: My pen lies over the ocean. My pen lies over the sea. My pen lies...

by Unknown · 0

Use of line breaks in html

<!DOCTYPE html> <html> <body> <p>This is<br />a para<br />graph with line breaks</p> </body> </html> Result is: This isa paragraph with line breaks...

by Unknown · 0

How to create More paragraphs using html

<!DOCTYPE html> <html> <body> <p> This paragraph contains a lot of lines in the source code, but the browser ignores it. </p> <p> This paragraph contains      a lot of spaces in the source     code, but the    browser ignores it. </p> <p> The number of lines in a paragraph depends on the size of your browser window. If you resize the browser...

by Unknown · 0

How to Insert horizontal lines in html

<!DOCTYPE html> <html> <body> <p>The hr tag defines a horizontal rule:</p> <hr /> <p>This is a paragraph</p> <hr /> <p>This is a paragraph</p> <hr /> <p>This is a paragraph</p> </body> </html>...

by Unknown · 0

How to Insert comments in the HTML source code

<!DOCTYPE html> <html> <body> <!--This comment will not be displayed--> <p>This is a regular paragraph</p> </body> </html>...

by Unknown · 0

How to create image using Html

<!DOCTYPE html> <html> <body> <img src="blog.jpj" width="104" height="142" /> </body> </html> HTML images are defined with the <img> tag...

by Unknown · 0

How to create Html links

<!DOCTYPE html> <html> <body> <a href="http://www.w3schools.com"> This is a link</a> </body> </html>...

by Unknown · 0

How to create Html paragraphs

<!DOCTYPE html> <html> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p>This is a paragraph.</p> </body> </html> ...

by Unknown · 0

How to create HTML headings

<!DOCTYPE html> <html> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> </body> </html>...

by Unknown · 0

How to create A very simple HTML document

<!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>...

by Unknown · 0

How to Create an object constructor using javascript

<!DOCTYPE html> <html> <body> <script type="text/javascript"> function person(firstname,lastname,age,eyecolor) { this.firstname=firstname; this.lastname=lastname; this.age=age; this.eyecolor=eyecolor; } myFather=new person("John","Doe",50,"blue"); document.write(myFather.firstname + " is " + myFather.age + " years old."); </script> </body> </html>...

by Unknown · 0

How to Create a direct instance of an object using javascript

<!DOCTYPE html> <html> <body> <script type="text/javascript"> personObj={firstname:"John",lastname:"Doe",age:50,eyecolor:"blue"} document.write(personObj.firstname + " is " + personObj.age + " years old."); </script> </body> </html>...

by Unknown · 0

How to create A clock created with a timing event using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function startTime() { var today=new Date(); var h=today.getHours(); var m=today.getMinutes(); var s=today.getSeconds(); // add a zero in front of numbers<10 m=checkTime(m); s=checkTime(s); document.getElementById('txt').innerHTML=h+":"+m+":"+s; t=setTimeout('startTime()',500); } function checkTime(i) { if (i<10)   {   i="0"...

by Unknown · 0

How to create Timing event in an infinite loop - with a Stop button using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> var c=0; var t; var timer_is_on=0; function timedCount() { document.getElementById('txt').value=c; c=c+1; t=setTimeout("timedCount()",1000); } function doTimer() { if (!timer_is_on)   {   timer_is_on=1;   timedCount();   } } function stopCount() { clearTimeout(t); timer_is_on=0; } </script> </head> <body> <form> <input...

by Unknown · 0

How to create Timing event in an infinite loop using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> var c=0; var t; var timer_is_on=0; function timedCount() { document.getElementById('txt').value=c; c=c+1; t=setTimeout("timedCount()",1000); } function doTimer() { if (!timer_is_on)   {   timer_is_on=1;   timedCount();   } } </script> </head> <body> <form> <input type="button" value="Start...

by Unknown · 0

How to create Another simple timing using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function timedText() { var t1=setTimeout("document.getElementById('txt').value='2 seconds!'",2000); var t2=setTimeout("document.getElementById('txt').value='4 seconds!'",4000); var t3=setTimeout("document.getElementById('txt').value='6 seconds!'",6000); } </script> </head> <body> <form> <input type="button" value="Display...

by Unknown · 0

How to create Simple timing using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to wait 3 seconds, then alert "Hello".</p> <button onclick="myFunction()">Try it</button> <script type="text/javascript"> function myFunction() { setTimeout(function(){alert("Hello")},3000); } </script> </body> </html>...

by Unknown · 0

How to Create a welcome cookie using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function getCookie(c_name) { var i,x,y,ARRcookies=document.cookie.split(";"); for (i=0;i<ARRcookies.length;i++)   {   x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));   y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);   x=x.replace(/^\s+|\s+$/g,"");   if (x==c_name)     {     return...

by Unknown · 0

How to create The onerror event using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> onerror=handleErr; var txt=""; function handleErr(msg,url,l) { txt="There was an error on this page.\n\n"; txt+="Error: " + msg + "\n"; txt+="URL: " + url + "\n"; txt+="Line: " + l + "\n\n"; txt+="Click OK to continue.\n\n"; alert(txt); return true; } function message() { adddlert("Welcome guest!"); } </script> </head> <body> <input...

by Unknown · 0

How to create The try...catch statement with a confirm box using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> var txt=""; function message() { try   {   adddlert("Welcome guest!");   } catch(err)   {   txt="There was an error on this page.\n\n";   txt+="Click OK to continue viewing this page,\n";   txt+="or Cancel to return to the home page.\n\n";   if(!confirm(txt))     {     document.location.href="http://www.w3schools.com/";  ...

by Unknown · 0

How to create The try...catch statement using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> var txt=""; function message() { try   {   adddlert("Welcome guest!");   } catch(err)   {   txt="There was an error on this page.\n\n";   txt+="Error description: " + err.message + "\n\n";   txt+="Click OK to continue.\n\n";   alert(txt);   } } </script> </head> <body> <input...

by Unknown · 0

How to create Acting to the onmouseover event using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function writeText(txt) { document.getElementById("desc").innerHTML=txt; } </script> </head> <body> <img src ="planets.gif" width ="145" height ="126" alt="Planets" usemap="#planetmap" /> <map name="planetmap"> <area shape ="rect" coords ="0,0,82,126" onmouseover="writeText('The Sun and the gas giant planets...

by Unknown · 0

How to create Acting to the onclick event using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function displayDate() { document.getElementById("demo").innerHTML=Date(); } </script> </head> <body> <h1>My First Web Page</h1> <p id="demo">This is a paragraph.</p> <button type="button" onclick="displayDate()">Display Date</button> </body> </html>...

by Unknown · 0

How to create Use a for...in statement to loop through the elements of an object using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to loop through the properties of an object named "person".</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x; var txt=""; var person={fname:"John",lname:"Doe",age:25}; for (x in person) { txt=txt + person[x]; } document.getElementB...

by Unknown · 0

How to use Break and continue a loop in javascript

<!DOCTYPE html> <html> <body> <p>Click the button to do a loop which will skip the step where i=3.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x="",i=0; for (i=0;i<10;i++)   {   if (i==3)     {     continue;     }   x=x + "The number...

by Unknown · 0

How to create Break a loop using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to do a loop with a break.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x="",i=0; for (i=0;i<10;i++)   {   if (i==3)     {     break;     }   x=x + "The number is " + i + "<br />";  ...

by Unknown · 0

How to create Do While loop using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to loop through a block of as long as <em>i</em> is less than 5.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x="",i=0; do   {   x=x + "The number is " + i + "<br />";   i++;   } while (i<5)...

by Unknown · 0

How to create While loop using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to loop through a block of as long as <em>i</em> is less than 5.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x="",i=0; while (i<5)   {   x=x + "The number is " + i + "<br />";   i++;   } d...

by Unknown · 0

How to Looping through HTML headers using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to loop from 1 to 6, to make HTML headings.</p> <button onclick="myFunction()">Try it</button> <div id="demo"></div> <script type="text/javascript"> function myFunction() { var x="",i; for (i=1; i<=6; i++) { x=x + "<h" + i + ">Heading " + i + "</h" + i + ">"; } document.getElementById("demo").inner...

by Unknown · 0

How to create For loop using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to loop through a block of code five times.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x="",i; for (i=0;i<5;i++)   {   x=x + "The number is " + i + "<br />";   } document.getElementById("demo").innerHTML=...

by Unknown · 0

How to create Function with arguments, that returns a value using javascript

<!DOCTYPE html> <html> <body> <p>This example calls a function which perfoms a calculation, and returns the result:</p> <p id="demo"></p> <script type="text/javascript"> function myFunction(a,b) { return a*b; } document.getElementById("demo").innerHTML=myFunction(4,3); </script> </body> </html>...

by Unknown · 0

How to create Function that returns a value using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function myFunction() { return ("Hello world!"); } </script> </head> <body> <script type="text/javascript"> document.write(myFunction()) </script> </body> </html>...

by Unknown · 0

How to create Function with an argument 2 using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function myfunction(txt) { alert(txt); } </script> </head> <body> <form> <input type="button" onclick="myfunction('Good Morning!')" value="In the Morning"> <input type="button" onclick="myfunction('Good Evening!')" value="In the Evening"> </form> <p> When you click on one of the buttons, a...

by Unknown · 0

How to create Function with an argument using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to call a function with arguments</p> <button onclick="myFunction('Harry Potter','Wizard')">Try it</button> <script type="text/javascript"> function myFunction(name,job) { alert("Welcome " + name + ", the " + job); } </script> </body> </html>...

by Unknown · 0

How to create call a function using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function myFunction() { alert("Hello World!"); } </script> </head> <body> <button onclick="myFunction()">Try it</button> <p>By clicking the button above, a function will be called. The function will alert a message.</p> </body> </html>...

by Unknown · 0

How to create promt box using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to demonstrate the prompt box.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x; var name=prompt("Please enter your name","Harry Potter"); if (name!=null)   {   x="Hello " + name + "! How are you today?";   document.getElementById("demo").innerHTML=x;  ...

by Unknown · 0

How to Build a confirmbox using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to display a confirm box.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x; var r=confirm("Press a button!"); if (r==true)   {   x="You pressed OK!";   } else   {   x="You pressed Cancel!";   } docume...

by Unknown · 0

How to write Alert box with line breaks using javascript

<!DOCTYPE html> <html> <body> <p>Click the button to demonstrate line-breaks in a popup box.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { alert("Hello\nHow are you?"); } </script> </body> </html>...

by Unknown · 0

How to write alert box using javascript

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function myFunction() { alert("Hello! I am an alert box!"); } </script> </head> <body> <input type="button" onclick="myFunction()" value="Show alert box" /> </body> </html>...

by Unknown · 0

Javascript switch statement

<!DOCTYPE html> <html> <body> <p>Click the button to display what day it is today.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x; var d=new Date().getDay(); switch (d)   {   case 0:     x="Today it's Sunday";     break;   case 1:    ...

by Unknown · 0

How to use javascript random link

<!DOCTYPE html> <html> <body> <p id="demo"></p> <script type="text/javascript"> var r=Math.random(); var x=document.getElementById("demo") if (r>0.5) { x.innerHTML="<a href='http://w3schools.com'>Visit W3Schools</a>"; } else { x.innerHTML="<a href='http://wtf.org'>Visit WTF</a>"; } </script> </body> </html> ...

by Unknown · 0

Javascript if else statement

<!DOCTYPE html> <html> <body> <p>Click the button to get a time-based greeting.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x=""; var time=new Date().getHours(); if (time<20)   {   x="Nice day";   } else   {   x="Good evening";   } document.get...

by Unknown · 0

Javascript If statement

<!DOCTYPE html> <html> <body> <p>Click the button to get a "Nice day" greeting if the time is less than 20:00.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script type="text/javascript"> function myFunction() { var x=""; var time=new Date().getHours(); if (time<20)   {   x="Nice day";   } document.getElementById("demo...

by Unknown · 0

How to Declare a variable, assign a value to it, and display it in javascript

<!DOCTYPE html> <html> <body> <script type="text/javascript"> var firstname; firstname="Hege"; document.write(firstname); document.write("<br />"); firstname="Tove"; document.write(firstname); </script> <p>The script above declares a variable, assigns a value to it, displays the value, changes the value, and displays the value again.</p> </body> </html> ...

by Unknown · 0

How to write multiple line comments in javascript

<!DOCTYPE html> <html> <body> <h1 id="myH1"></h1> <p id="myP"></p> <script type="text/javascript"> /* The code below will write to a heading and to a paragraph, and will represent the start of my homepage: */ document.getElementById("myH1").innerHTML="Welcome to my Homepage"; document.getElementById("myP").innerHTML="This is my first paragraph."; </script> <p><strong>Note:</strong>...

by Unknown · 0

How to write single line comment to prevent execution in javascript

<!DOCTYPE html> <html> <body> <h1 id="myH1"></h1> <p id="myP"></p> <script type="text/javascript"> //document.getElementById("myH1").innerHTML="Welcome to my Homepage"; document.getElementById("myP").innerHTML="This is my first paragraph."; </script> <p><strong>Note:</strong> The comment is not executed.</p> </body> </html> ...

by Unknown · 0

How to write single line comments in javascript

<!DOCTYPE html> <html> <body> <h1 id="myH1"></h1> <p id="myP"></p> <script type="text/javascript"> // Write to a heading: document.getElementById("myH1").innerHTML="Welcome to my Homepage"; // Write to a paragraph: document.getElementById("myP").innerHTML="This is my first paragraph."; </script> <p><strong>Note:</strong> The comments are not executed.</p> </body> </html> Result: Welcome...

by Unknown · 0

How to write javascript blocks

<!DOCTYPE html> <html> <body> <h1>My Web Page</h1> <p id="demo">A Paragraph.</p> <p id="myDIV">A DIV.</p> <button type="button" onclick="myFunction()">Try it</button> <script type="text/javascript"> function myFunction() { document.getElementById("demo").innerHTML="Hello Boy"; document.getElementById("myDIV").innerHTML="How are you?"; } </script> </body> </html> Result: My...

by Unknown · 0

How to write javascript statements

<!DOCTYPE html> <html> <body> <h1>My Web Page</h1> <p id="demo">A Paragraph.</p> <p id="myDIV">A DIV.</p> <script type="text/javascript"> document.getElementById("demo").innerHTML="Hello Boy"; document.getElementById("myDIV").innerHTML="How are you?"; </script> </body> </html> Result: My Web Page Hello Boy How are you?...

by Unknown · 0