Categories
HTML

Using Fetch 5 for SFTP

What is FTP? FTP stands for file transfer protocol. That’s one of the conventions used for transfer of files between computers. Common FTP Programs There are literally hundreds of different FTP programs. For Windows, there’s Filezilla, WS_FTP, CuteFTP, and a whole host of others. Google “free Windows FTP program” and you’ll find a ton at the […]

Categories
HTML

Doctypes and Code Validators

To check the validity of your code, you can submit it to https://validator.w3.org/, either by typing in a URL, uploading the file, or even cutting & pasting your document into a form field. However, before you do that you must first add a Document Type Definition, so the software knows which flavor of (x)html you are […]

Categories
CSS

Selectors: Tags, Classes, IDs

Which Selector to Choose & Why There are three main CSS style types: tags, classes, and IDs. This article will explain the difference between tags, classes, and IDs. Tag Styles I’ve started this discussion with tag styles because they’re the most basic and therefore easiest to understand. When we make a tag style, we are […]