This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function nameOfFunction( arg ) { | |
| alert( arg); | |
| // Hello World | |
| console.log( arguments[0] +". "+ arguments[1] +", "+ arguments[2] ); | |
| // Hello World. Its me, Ben | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function createGallery(element,path,file,alt){ | |
| var liString = ""; | |
| var i = 1; | |
| var n = 8; | |
| for(i; i <= n; i++) | |
| { | |
| liString += '<li><a href="#self" onclick="showImage(\''+file+i+'\');"><img class="photo" alt="'+alt+'-'+i+'" src="'+path+file+i+'.jpg"></a></li>\n'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form action="contactus.php" method="post"> | |
| <p>Name:</p> | |
| <p><input type="text" name="name" value="Your name"></p> | |
| <p>Comments: </p> | |
| <p><textarea name="comments" rows="5" cols="20">Your comments</textarea></p> | |
| <p>Are you:</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <select> | |
| <option>Option 1</option> | |
| <option>Option 2</option> | |
| <option value="third option">Option 3</option> | |
| </select> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <textarea rows="5" cols="20">A big load of text</textarea> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form action="processingscript.php" method="post"> | |
| </form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :active | |
| :checked | |
| :default | |
| :dir() | |
| :disabled | |
| :empty | |
| :enabled | |
| :first | |
| :first-child | |
| :first-of-type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>HTML Headings</title> | |
| </head> | |
| <body> | |
| <h1>Heading</h1> | |
| <h2>Heading</h2> | |
| <h3>Heading</h3> | |
| <h4>Heading</h4> |
NewerOlder