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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A brief introduction to HTML</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A brief introduction to HTML</title> | |
| </head> | |
| <body> | |
| <h1>Beginners HTML</h1> | |
| <p>Learn HTML</p> | |
| <p>This is an introduction course to HTML.</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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A brief introduction to HTML</title> | |
| </head> | |
| <body> | |
| <h1>Beginners HTML</h1> | |
| <h2>Beginners HTML</h2> | |
| <h3>Beginners HTML</h3> |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A brief introduction to HTML</title> | |
| </head> | |
| <body> | |
| <h1>Beginners HTML</h1> | |
| <h2>Beginners HTML</h2> | |
| <h3>Beginners HTML</h3> |
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
| <nav> | |
| Go to <a href="http://www.google.com" target="_blank">Google</a> | |
| <a href="first.html">First Page</a> | |
| <a href="second.html">Second Page</a> | |
| <a href="third.html">Third Page</a> | |
| </nav> |
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
| <p><img src="http://lorempixel.com/400/200/" alt="Radnom picture" width="200px" height="100px"></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
| <a href=""> | |
| <p><img src="http://lorempixel.com/400/200/" alt="Radnom picture" width="200px" height="100px"></p> | |
| </a> |
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
| <!--Lists OL--> | |
| <h3>Ordered Lists</h3> | |
| <ol type="I"> | |
| <li>HTML</li> | |
| <li>CSS</li> | |
| <li>Javascript</li> | |
| </ol> |
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
| <!--Lists UL--> | |
| <h3>Unordered Lists</h3> | |
| <ul style="list-style-type: circle"> | |
| <li>HTML</li> | |
| <li>CSS</li> | |
| <li>Javascript</li> | |
| </ul> |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A brief introduction to HTML</title> | |
| </head> | |
| <body> | |
| <!--Headers--> | |
| <h1>Beginners HTML</h1> | |
| <h2>Beginners HTML</h2> |
OlderNewer