Web Development Tips
CSS
| background-color: black; | Sets page background color. CSS color name (black), three and six character HEX values (#000 or #000000) and RGB values (rgb(0,0,0)) are all acceptable. |
HTML
| <title>text</title> | Sets the title of the page. |
PHP
| echo "text"; | Prints quoted text. Faster than print "text";. |
| include 'file.php'; | Includes data from additional files. Use file.php, folder/file.php and ../folder/file.php for paths. |