Pseudocode is the process of writing out you plan for your code in a human readable fashion. You can use this for your own projects however you see fit, but on projects with larger teams there may be a specific syntax and format that you’ll be required to use.
Related Articles

CSS and HTML 5
CSS and HTML 5 – Adding CSS to HTML (External, Internal, Inline)
CSS can be added to an HTML document 3 different ways. You can use an External Style Sheet, dd CSS to the Head of the HTML document, and within the HTML tags themselves. inlineCSS.html onPageCSS.html […]

*NEW
PHP – Parse Filenames and Paths with pathinfo()
The pathinfo() function allows you to turn a filepath into an Array and then interact with the keys of the Array. You can grab the Filename, Extension, Folder Name and Basename. pathinfo() https://www.php.net/manual/en/function.pathinfo.php https://www.w3schools.com/php/func_filesystem_pathinfo.asp pathinfo.php

HTML Intro
HTML Intro – iFrames
iFrames allow you to embed other web pages into your HTML document. This can be to show off other people’s websites, or simply as a way to reuse code such as for menu bars, or […]
Be the first to comment