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>Tables Page</title> | |
| </head> | |
| <body> | |
| <h1>Lets Play with Tables</h1> | |
| <table border="1"> | |
| <tr> |
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> | |
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 FORMATTING</title> | |
| </head> | |
| <body> | |
| <h1>HTML Formatting</h1> | |
| This is just text. | |