Wednesday, August 10, 2016

W3 Tag, You're It

            HTML relies on a system of tags to instruct it on what to do. Tags are letters/words/code inside of less than and greater than signs < > that the language will recognize as instructions. Tags tell computers when to begin to do something and when to end, much like capital letters begin a sentence and a period ends one (always have an opening and closing tag). An opening tag will only have the signs and the code, like this: <i>. Closing tags include a slash / just inside the less than sign, like this: </i>.
. You can also use more than one tag at a time, but tags must nest inside one another like matroshka dolls.

Word Processor
HTML Tags
I’m disgusted by the jar of pickled pigs’ feet.
I’m disgusted by the jar of pickled <i>pigs’ feet.</i>
I’m disgusted by the jar of pickled pigs’ feet.
I’m disgusted by the jar of pickled <b><i>pigs’ feet.</i></b>

            For the most part, don’t worry too much about this. Most blogging sites have their own editors, and will check to see if you have the HTML tags, but you don’t need to interact with the HTML side much. You can just use the text editor. Better still, we can use a WYSIWYG editor to create our HTML. We’ll get to that in a couple of weeks.