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>HTML FORMATTING</title> | |
| </head> | |
| <body> | |
| <h1>HTML Formatting</h1> | |
| This is just text. | |
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>Getting Started with HTML</title> | |
| </head> | |
| <body> | |
| <h1>Header 1</h1> | |
| <p>This is an example of a paragraph.</p> | |
| <p>This is my second paragraph.</p> | |
| <h2>Header 2</h2> |