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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="styles.css"> | |
| <style> | |
| .container {width: 90%;} | |
| .left { | |
| width: 44%; | |
| float: left; |
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
| <html> | |
| <head> | |
| <style> | |
| .container {width: 50%; /*Sets the size of the conatiner as a percentage of overall page */ | |
| margin: 0 auto; /*Margin above and below the content text set to 0; and left/right margin is claculate dby the browser*/ | |
| } | |
| </style> | |
| </head> |
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
| <html> | |
| <head> | |
| <style> | |
| #red-background {background-color:red} | |
| </style> | |
| </head> | |
| <body> | |
| <div id="red-background">"Moonlight Drive"</div> |
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
| <html> | |
| <head> | |
| <style> | |
| .red-text {background-color:red} | |
| </style> | |
| </head> | |
| <body> | |
| <div class="red-text">"Soul Kitchen"</div> |
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
| /*Inserted into the header file of an HTML document*/ | |
| <head> | |
| <style> | |
| div { | |
| display: block; | |
| } | |
| </style> | |
| </head> |