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 Form</title> | |
| </head> | |
| <body> | |
| <form> | |
| <p>First Name:</p> | |
| <input type="text" name="firstname" placeholder="First Name"> |
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>ID and Class Page</title> | |
| <style> | |
| #main-navigation { | |
| color: brown; | |
| } | |
| h1 { |
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>List Page</title> | |
| </head> | |
| <body> | |
| <h1>Lets Play with Lists</h1> | |
| <!-- Unordered List --> | |
| <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> | |
| <head> | |
| <title>This is a title</title> | |
| </head> | |
| <body> | |
| <h1>Lets Play with Links</h1> | |
| <a href="link.html" target="_blank">Go to Link Page</a> | |
| </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> | |
| <head> | |
| <title>HTML Elements Cont..</title> | |
| </head> | |
| <body> | |
| <h1>More Elements</h1> | |
| <p>Here is a quote: <q>Inspirational quote would go right here.</q></p> | |