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> | |
| <title>Short HTML</title> | |
| <meta charset="UTF-8"> | |
| <h1>Hello World</h1> | |
| <ul> | |
| <li>First Element | |
| </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
| <meta content="UTF-8"> |
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>Form</title> | |
| </head> | |
| <body> | |
| <form action="first.html" method="post"> | |
| <input type="text" size="30"><br> | |
| <input type="email" size="30"> |
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
| <button type="button" onclick="alert('Hello World')">Click Me</button> |
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
| <link rel="stylesheet" href="style.css"> |
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> | |
| <style> | |
| .blue_p { | |
| color: blue; | |
| } | |
| </style> |
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 style="color:red">Lorem ipsum dolor sit amet, consectetur adipisicing elit. | |
| Cupiditate est eum natus obcaecati placeat possimus tenetur! | |
| Ab adipisci aliquam ducimus expedita, explicabo maxime minus nam nisi placeat, quidem reiciendis vero?</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> | |
| <!--Headers--> | |
| <h1>Beginners HTML</h1> | |
| <h2>Beginners HTML</h2> |
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
| <!--Lists OL--> | |
| <h3>Ordered Lists</h3> | |
| <ol type="I"> | |
| <li>HTML</li> | |
| <li>CSS</li> | |
| <li>Javascript</li> | |
| </ol> |