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="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Browsersync.io Template</title> | |
| </head> | |
| <body> | |
| <h1>Template für Live reload des Browsers mit NodeJS, Gulp und Browsersync.io</h1> | |
| </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
| <html> | |
| <head> | |
| <title>Hier steht der Titel der Website</title> | |
| </head> | |
| <body> | |
| Hier steht der sichtbare Teil der Website | |
| </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
| <html> | |
| <body> | |
| Hier steht der sichtbare Teil der Website | |
| </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
| /** Grundlegende Regeln zur besseren Anschauung **/ | |
| body { | |
| font-family: Helvetica, Arial, sans-serif; | |
| font-size: 36px; | |
| margin: 0 auto; | |
| text-align: center; | |
| width: 800px; | |
| margin-top: 10px; | |
| } | |
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
| <body> | |
| <div class="flex-container"> | |
| <div class="container-01">01-Main Content</div> | |
| <div class="container-02">02-Navigation</div> | |
| <div class="container-03">03-Footer</div> | |
| </div> | |
| </body> |
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
| <body> | |
| <div class="flex-container"> | |
| <div class="container-01">Navigation</div> | |
| <div class="container-02">Main-Content</div> | |
| <div class="container-03">Footer</div> | |
| </div> | |
| </body> |
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
| /*=========== SHORT ==============*/ | |
| .clearfix:before, | |
| .clearfix:after { | |
| content:""; | |
| display:table; | |
| } | |
| .clearfix:after { | |
| clear:both; | |
| } | |
| .clearfix { |