Do I have to learn HTML?
Some people will tell you ABSOLUTELY NOT, but they are not telling you the complete truth.
The absolute truth is YES. You do not have to know everything there is to know about HTML, but you will need to know a basic understanding of how it works. Just like you do not have to know exactly how your car operates, but you need to know what fluids go where.
HTML is not difficult to learn at all. In fact to build this page that you are seeing right now, I only used the following elements:
Heading, Paragraph, Bold, Links, Images, Tables, Code Insertion.
That is it! You do not have to have an extensive knowledge of HTML to be able to use it. I will cover the basics that will enable you to get started right away. You can take this knowledge and build on it.
Basic HTML - Getting Started
Here is how Simple HTML is to use:
HTML starts with an Open Tag and a Close Tag. Or you can think of it as Start and Finish. Once you know this, the only other thing you need to know is What Do I Want To Do? Once you can answer that question, you can write HTML.
<open tag> This is a Basic HTML Example</close tag>
The Open Tag tells your browser what to do and to begin executing that code.
The Close Tag tells your browser to stop doing it.
You need to do 3 things with Basic HTML: (and it is almost always the same)
1. OPEN TAG (What do you Want to Do?)
2. TEXT (What you want it done to.)
3. CLOSE TAG (Stop Doing it)
For Example: The HTML needed to Bold the Word Website looks like this:
<b>Website</b> . And when you view the page you will only see Website.
That is it. The rest is trial and error. Listed below you will find an example of the most common HTML Tags and what each one does.
Editing Font
The most basic thing you can do with a webpage is edit font. This will change the look and feel of the text on your page.
<font size="3">Sets size of font, from 1 - 2 - 3 - 4 - 5 - 6 - 7</font>
<b>Bold Text</b>
<i>Italic Text</i>
<font color="green">Changes the font Color</font>
FORMATING THE PAGE
These tags allow you to edit the basic layout of the page.
<p>Create a new paragraph</p>
<p align="left">This sets your alignment to left, right or center.
<br />Line Break. If you want to insert a line in your Paragraph or between.
<img src="url.com/name.jpg" alt="Description" />Insert an Image
<hr />Inserts a horizontal rule
TABLES
<table></table>Create a Table
<tr></tr>Create a Row in a table
<td></td>Creates a Cell within the Row. (This is what will create columns)
With these 12 HTML Tags you can begin building websites. SERIOUSLY!
USING A HTML EDITOR
Another route that you can take is using a program with a WYSIWYG Editor.
WYSIWYG stands for "What You See, is What You Get".
This means that as you make the changes on your computer screen for the web page you are working on, the editor generates the HTML for you. This makes building web pages very similar to using any word processing software. So if you have ever used Word or WordPerfect, you can definitely build web pages.
This is the method I personally used to learn HTML. Take advantage of the editor to get started right away and at the same time you will begin to learn the HTML Language.
You will pick it up in no time. HTML is a very simple language to learn.
If you want to get serious about HTML, then there is only one program to use. Ask around and any web developer will tell you that if you are serious about web design you need to be using Adobe Dreamweaver CS3
You can build quite a lucrative business building webpages for people. This knowledge that you are leaning (even just by reading this site!) can really propel your business to the next level.
Usually, your first job will pay for the software! What other business can you be in where you break even on your first sale?
Adobe Dreamweaver CS3 is just the tool to take you to that level. Start downloading Adobe Dreamweaver CS3 in minutes. No shipping needed. Only at Adobe.com

Recent Comments