Archive for Website Design

You are browsing the archives of Website Design.

HTML Basics - Part 4 - More Text Manipulation

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!Line Breaks
To order the browser to skip to a new line, use the <br> tag. Whenever the browser encounters this tag, it immediately jumps down one line in the viewing area, and begins to display the next set of [...]

HTML Basics - Part 3 - Heading and Paragraph Tags

Headings are defined with the <h1> to <h6> tags. <h1> defines the largest heading. <h6> defines the smallest heading.
<h1>This is a heading</h1>
This is heading 1
<h2>This is a heading</h2>
This is heading 2
<h3>This is a heading</h3>
This is heading 3
<h4>This is a heading</h4>
This is heading 4
<h5>This is a heading</h5>
This is heading 5
<h6>This is a heading</h6>
This is heading 6
HTML [...]

HTML Basics - Part 2 - A Few More Basics

You’ll find that once you familiarize yourself working with HTML, you’ll be able to control the look and feel of your web site. It won’t be long before you’re a whiz at HTML
Platform Independant:
HTML is ‘Platform Independant’, which basically means ‘universal’. It doesn’t matter what kind of computer you have, what [...]

HTML Basics - Part 1

There are a lot of women out there who have websites, but have no clue how to edit them or do much with them as someone else created the site and you’ll have to fork out additional cash just to have minor changes made.
Well, that sucks!  And although you’ll here tons and tons on PHP, [...]