Find us elsewhere

Home > Step-by-Step Advice > 11 Steps to Create a Successful Website > Learn the Code (But Only What You Must)

11 Steps to Create a Successful Website

Step 5: Learn the Code (But Only What You Must)

Pages:
AddThis Social Bookmark Button

How Does It Work?

Text alone is just a collection of words. Once strung together in a sentence or paragraph, punctuation makes them understandable and gives them meaning.

In HTML, the punctuation marks are called “tags.” Here’s a simple example:

Say you want to add the line, “Is HTML really so easy?” as its own paragraph on your Web page. In Hypertext Markup Language, it looks like this:

<p>Is HTML really so easy?</p>

To give emphasis to a word using italics – “Is HTML really so easy?” – add another pair of tags:

<p>Is HTML <em>really</em> so easy?</p>

Now, to put the same word in boldface, add another pair of tags:

<p>Is HTML <em><strong>really</strong></em>so easy?</p>

When a Web browser reads that code, this will appear on your page:

Is HTML really so easy?

You’ll notice that for every tag, like <p> for the start of a paragraph, there is also a closing tag – in this case </p>, for end of paragraph – that includes the slash mark /. The italics tag <em> means “emphasis,” and <strong> means boldface. (Old school HTML uses <i> for italics and <b> for boldface, but working with the newer tags will prepare you for using CSS – or Cascading Style Sheets – for even more flexibility and functions).
Of course there’s much more to this language than three pairs of tags – far too much to cover here. But if you want to keep going, these are great places to start:

Pages: » Continued

Comments

Since Microsoft officially discontinued support for Frontpage as of 2006, Rich, you may want to stop recommending it.  I`ll add too that most web designers/developers thought it was awful from the start: bloated with Microsoft-only/proprietary tags for which web hosts had to make special provisions. Not cross-browser friendly!

NVU is ok to use because it is free...HOWEVER..I prefer using Microsoft`s Frontpage.  Very user friendly. Also, if you`re not website friendly you can always just outsource this to rentacoder pretty cheaply.  I`m good with HTML but I still outsource a good portion of my work because my time is far too valuable.

I think this aspect of creating a website scares the most people. The truth is you really don`t need to know ANY Coding in this day of age due to the how easy CMS (Content Management Systems) have made websites. Both Joomla and Wordpress are easy to use and allow ANYONE to start their own website and maintain it without any technical prowess

Advertisement