Rewind - HTML
| Rewind - HTML | |
19 February 2004
From this premise, let’s take a look at HTML. Hypertext Mark up Language, to give it its full title, is the code that forms a web page. It’s this code which is used to render the page on your monitor screen the way the web designer, hopefully, intended. To see an example of this code, right click on this page and select View Source. Pretty unintelligible, huh? At first look, certainly. But the digital world of computing as we know is made up of zeroes and ones, a binary code that tells a bunch of transistors when to switch on and off. HTML is much the same: switch this effect on here, switch this effect off here…A set of road signs or traffic lights, if you will. Here’s an example: Computer To render this word in bold on a web page, the HTML tag required consists of three elements – an opening bracket, the text to be affected, and the closing bracket, thus: <b>Computer</b> <b> signifies start Bold, and </b> signifies stop Bold here. Suddenly, the hieroglyphics of the source code is starting to make some sense. Sticking with text for now, the tags below do the following jobs: <p> </p>= paragraph <i> </i>= italics <u> </u> = underline <br> </br> = break <strong> </strong> = strong <center> </center> = centre
Back in the real world for web masters or web site owners whose day job is running their business, the above may shed some light on what is going on under their cyberspace bonnet. | |
