Style versus Substance

When web sites first starting popping up in the 1990s, they were mostly text, with some formatting and styling. Truth be known, many of those first websites were pretty ugly (my own among them.) We could choose colors, or make text bold, add a picture, and even (shudder) make words blink. To style our pages we applied formatting instructions to the HTML tags.

For example, if I wanted a sentence to be bold or red I could do this:

<p><b>This part is bold.</b></p>
or
<p><font color="red">This is red</font></p>

The basic approach was to lay out our web page and then apply some styles or formats to it – much like a painter might draw a picture.

read more

Bricks and Mortar – HTML

HTML

Web pages have a basic, bricks and mortar, foundation. It’s called HTML – short for HyperText Markup Language.

So, here’s a trivia/history question for fellow Mac enthusiasts. Do you remember an early Mac application called HyperCard? This was pre-Internet, and had some features of web pages as we know them now. The principle feature was that you could link a word or phrase on a card and the user could click on that link and be taken to another card. The only problem was that you had to use the computer where the HyperCard application was running. No one had figured out how to make it run over a network (unless our Alan Oppenheimer had gotten ahead of everyone else when working with AppleTalk.) I actually created a simple marketing game/simulation in HyperCard, and used it for marketing training for Kaiser Permanente reps in the late 1980s. (but I digress….)

read more