Archive for the 'HTML' Category

HTML - HTML for Complete Beginners

Tuesday, February 7th, 2006

>

HTML stands for Hyper Text Markup Language and is the computer language that most of the Internet is written in.

HTML is made up of tags and sets of tags, a set being two tags that are linked: a start tag and an end tag. HTML is a bit like a person, the head comes first, then the body.

As I’ve just mentioned the very first main tag of every single HTML document is usually the HTML tag, which is a start tag and is written as <html>. Accompanying it will be the very last tag of the document, the end tag, </html>. Notice the / this means it is an end tag. Every start tag must have an end tag. Start tags begin a section of code and end tags finish it. I say the very first “main” tag as there can be a tag before it, the DOCTYPE tag. This tag gives the browser information about what type of HTML is being used.

The head section begins with the <head> tag and ends with the </head> tag. It has information about the page itself and consists of the page title, the meta tags (more on those in a minute), and the code for any page transitions you may have.

The page title is self-explanatory and is written as <title> Your page title </title>

The meta tags, particularly the http://www.moynem.freeserve.co.uk (first created when I knew nothing about HTML apart from what it was and what it stood for)is called “M Moyne’s home page and thus has the meta tag: <meta name=”keywords” content=”M Moyne”>

There is also a meta description tag which used to tell the search engines how to describe the website on their results pages, now I’ve seen them use the first few lines of text for their description.

The next of the main tags is the body tag, which is written as <body> and </body> respectively. It contains the main part of your HTML code. On my personal homepage it starts off with the code for the background. In this case it is a JPEG image. You can put almost anything in the body section, navigation bars, page banners, tables, images, horizontal lines, hyperlinks and so on. However all of the things that I have just mentioned cannot go anywhere else except the body section.

Let’s look at the code for some simple things.

Headings: Heading 1 is <h1> Heading 2 is <h2> Heading 3 is <h3> and so on.

Paragraphs begin with

and end with

A 100 * 200 image with a description is: <img src=”image1.jpg” width=”100″ height=”200″ alt=”my image” longdesc=”myfirstimage.html”>

That’s enough for a simple web page.

About the Author

M Moyne knows quite a bit about Microsoft FrontPage, which he has used to create both M Moyne’s home page and My Orlando Guide , and he also knows a bit about Macromedia Flash. Unfortunately you can’t import Flash documents into FrontPage. He also has a blog, which is on his personal homepage, that’s the first link given above.

HTML - The Lowdown: How To Create And Send HTML Email

Tuesday, February 7th, 2006

The Lowdown: How To Create And Send HTML Email

 by: Steve Shaw

I am frequently asked how to create and send HTML email, usually with regard to how to broadcast it to a mailing list. This article presents the various options available to you.

How to create HTML email:

Creating the content of an HTML email is very similar to how you would create a basic web page. Just use your normal web page editor, such as FrontPage or Dreamweaver (or even Notepad can be used, in conjunction with a browser to preview the code), and construct a web page in the normal way, saving it as an .html or .htm file.

You may consider creating an HTML email template that you can use as a basis for all your future HTML emails. If so, once you’re happy with the basic look, save it and then just open and re-edit for your future emails.

There is an important difference that you need to remember between writing HTML for your web site, and writing HTML for email.

All the URLs in your code need to be absolute, rather than relative, for all links and images, eg. http://www.yourdomain.com/image.gif, rather than something like just image.gif. This also means of course that any images used in your HTML email need to be stored on a web server, the same as when you use images on a web site.

How to send HTML email:

To send the HTML email to an individual, such as to yourself in order to check on its appearance, you can open the web page (i.e. the HTML email) you have created in the latest version of IE (File -> Open…), and then click File -> Send.

However, if you’re creating HTML email for use in email marketing, you will normally want to use a completely different tool in order to send it to numerous recipients.

There are two main options to enable you to send email to a mailing list - you can either use some special software on your own computer; or use a web-based solution, either on your own web site, or via a service run by a third party.

If you are looking for software, you can find a variety of solutions by going to somewhere like download.com, and searching for ’send email’.

You can also install some software onto your own web site, which can give you more control but also gives you all the responsibility for maintenance of the software/script if things go wrong.

However, I personally have a preference for using a third-party web-based service when sending out my newsletter. For one, it means my broadcasts are not reliant on my own Internet connection or PC, and it also let’s someone else take care of delivering my messages to several thousand recipients.

There are literally hundreds of third-party web-based services available, all varying widely in quality and ease of use, and suiting different budgets and email requirements. One of the best ways to do your research on this is to check out your competitors or your favourite newsletters and ezines, and, if they send out HTML email, find out what service they use. Often the unsubscribe link, that should be at the bottom of their messages, will point towards the relevant web site.

(HINT: By signing up to my own newsletter at http://takanomi.com/newsletter, you will be able to find out which service I personally use.)

Finally, and importantly, should you send out HTML email? It entirely depends on the preferences of your own list. But, in general, look towards big business. Most big businesses tend to send out HTML email, and there’s only going to be one main reason for that - response rates. But you do need to ensure that your HTML email is professional, easy to read, and has an attractive layout.

Copyright 2004 Steve Shaw

Steve Shaw creates systems and software for effective e-marketing. His powerful PopUpMaster Pro software creates popups that beat the popup blockers and can significantly increase your conversion rates. For more information: http://www.popupmaster.com

About The Author

Steve Shaw has been marketing full-time online since March 2002, developing software products and systems for effect’ive e-marketing - for more information see http://takanomi.com

HTML - Why You Should Learn HTML

Tuesday, February 7th, 2006

Why You Should Learn HTML

 by: Debra Hamer

Do you have a website or are you planning on creating a website in the near future? You owe it to yourself to at least learn some basic HTML (HyperText Mark-up Language). Even if someone else is creating and maintaining your website there are some basics you should know. What if that person is not available and you need to add or make changes to your website? Ive always believed if you have a business, computer, website, or whatever, you need to know how it works. Dont depend on someone else. Besides why pay someone else when you can do it yourself free of charge.

In this article I will explain some basic HTML formats for you. Believe me it will come in handy at one point or another. I, myself, have only learned some of the basics and I have been able to add, change, and make corrections on my own website by myself.

When you come across a website you like and would like to use a similar layout or text pattern, look at the page in HTML code. You can do this by clicking on View at the top of the screen, then choose Document Source or Source and you can see the page as a HTML document. If you are using AOL then right click on any area on the page without any text or images, then select View Source. At first it will look like Greek to you but after learning some basic HTML it will start to make sense.

First you will need a word processor program such as Windows Notepad or any other word processor you might have. You are working with simple text. You will need to save your document using the save as command and give it an html suffix, ex: Mynewdocument.html or Mynewdocument.htm (you can use either suffix html or htm).

HTML works in a simple, logical format. It reads top to bottom and left to right. What are used to set sections apart like bigger text, smaller text, bold text, underlined text are tags. Tags are commands. If you wanted a line of text to be bold you will place a tag at the point you want the bold text to start and a tag at the end of where you want the bold text to stop.

All tags start with the less-than sign , always. What is between these signs is the tag or command. You will need to learn what tag does what. Lets first learn the bold command. The following is an example of making your text bold. The tag for bold is B. You can use uppercase or lowercase, it doesnt matter. Here is an example:

Note: Due to the HTML codes in the article being formatted and possibly not showing up on the page in normal view I have replaced the signs with the bracket characters [ and ]. Just remember to use the signs and not the [ and ] signs in your document.

This is how it will look in HTML format - [B]This text needs to be bold[/B]

Here is how it will look when converted to normal view This text needs to be bold

Did you notice the slight difference in the ending tag? There is a slash / before the B. That means it is the end tag. Only the text between the start and end tags will be in bold. Now lets add a twist by putting one of the words in italics.

This is how it will look in HTML format - [B] This [I]text[/I] needs to be bold[/B]

Here is how it will look in normal view This text needs to be bold

There are some tags that are an exception to the rule about having to have a start and end tag. You dont have to have an end tag when using these tags. Here are some examples.

[HR] this command places a line across the page. HR stands for horizontal reference.

[BR] this command breaks the text and jumps to the next line, like the return key.

[P] this command stand for paragraph, it does the same thing as the [BR] command but skips a line.

Every page you create with HTML will need the HTML tag [HTML] which denotes it is an HTML document and the end HTML tag [/HTML] will be at the end of your document. The next tags will be your start Title tag [TITLE] and your end Title tag [/TITLE]. The title of your document will go in between these two tags. The title will show up in the title bar on your browser when you are looking at the page in normal view.

The following are some tags for Headings (there are 6 heading commands) and Font size (there are 12 font size commands):

[H1]This is Heading 1[/H1] H1 is the largest heading

[H6]This is Heading 6[/H6] - H6 is the smallest heading

So, by using H1 through H6 you can change the size of your heading. Same applies to your font size. You will use [font size =+1] through [font size=+12] and dont forget your end tags!

You may notice that your text always starts at the left of the page. If you want your text to start in the center or to the right you will need to specify where you want your text to start. Here are some examples of aligning text:

[CENTER]Center this Text![/CENTER] - your text will be centered on the page.

Center this Text!

To align to the right you need to set the text as a paragraph unto itself by using the [P] tag and adding an attribute to it.

[P ALIGN=right]Text here will align on the right of the page[/P]

Text here will align on the right of the page

Why did I put an end tag [/p] since the paragraph command does not require an end tag (remember exceptions to the rule?) Anytime you use an attribute tag, as in the above example, you will need to have an end tag, whether youre using the paragraph command [P] or the return command [BR]. Using the [P] or [BR] command by itself does not require an end tag, but if you are adding an attribute then an end tag must be used.

Adding an image to your page would require the following tag:

[IMG SRC=image.jpg] -you would replace image.jpg with your own image file. IMG stands for image and SRC stands for source. Youre telling your browser where to find your image file. Your image file could have a gif, jpg, or a bmp association.

Ok now lets get a little more complicated and create a hyperlink on your document. This creates blue underlined words on the page that someone can click on and go to another location. An example is youre creating a link to another website.

[A HREF=http://www.profitfromhomebiz.com”]Profit From Home Biz[/A] - this is what in looks like in HTML code. Note you are adding a description of the link that will be underlined, see the example below.

Profit From Home Biz what it looks like in normal view. When someone clicks on this link they would be taken to my website.

This is a very important HTML format for when you need to add links onto your webpage. You may already know or will learn that reciprocal linking is very important in promoting your website and obtaining a higher page rank with the search engines. Sometimes the HTML code is provided for you and all you have to do is copy and paste the code into your webpage. Often it is not, so you have to figure out how to put the information into HTML code yourself. Just learning this HTML command has been a timesaver for me.

I hope this article has helped you learn some basic HTML and how it can benefit you. I know, I know there are HTML text editors out there you can use and they can do all of this for you. I have used a couple myself, but I still like to know how to do things on my own. I bet you do too! Sometimes its just faster and easier to do it yourself.

Ive just given you some very basic formats in using HTML, but you can find a lot more resources and information about learning HTML on the internet. Just do a search and Im sure you will be overwhelmed at whats out there. To view this article with the correct HTML formats please visit www.profitfromhomebiz.com/articles.

About The Author

Debra Hamer is the owner of the http://profitfromhomebiz.com website where you can find lots of tips, tools and resources for starting your own work at home business. Visit her PlugInProfitSite at http://www.pluginprofitsite.com/main-4256 to have your own website setup and ready to go within 24 hours, complete with everything you need to start making a profit.

Deb22056@aol.com

HTML - HTML Explained: Tips for Self-Starters

Tuesday, February 7th, 2006

Want to save money while promoting your web-based business? Of course you do. Here’s some advice on the matter, from a freelance copywriter who knows: it pays to learn the basics of HTML.

Want to save money while promoting your web-based business? Of course you do. Here’s some advice on the matter, from a freelance copywriter who knows: it pays to learn the basics of HTML.

If you’re like me (stubborn), you’ve probably been dodging HTML for many years. All that code mushed together… it’s distressing to look at! But here’s the thing: HTML is your friend. He might be ugly, but he’s a good guy to have on your side.

Once you get a basic understanding of how HTML works, the gibberish starts to make sense. And that’s when you’ll realize how easy it is to create web pages for your own business without having to 1. pay a designer thousands of dollars, or 2. purchase one of those expensive web design programs.

Let’s start with a general explanation. HTML stands for Hyper Text Markup Language. It’s the basis for every single design element you see on a web page: layout, copy, image placement, links, music, animation, etc. People who design their sites using fancy web page creators with buttons and copy/paste features are merely controlling the HTML code via the program’s graphic overlay. Underneath it all, the code’s still there in its pure form. You can see it if you go to a webpage and then click View>Source from the top menu.

Easy Web Page Creation

You can create a professional-looking web page using HTML and the bare minimum of tools: a text program (such as Notepad) to write and save files in, a Web browser to view the files, and a photo-editing program such as Photoshop.

Ever visit a webpage and then click View>Source so you can stare at the “guts” and try to make sense of it? The text program that opens that page is the same one you’ll use to create your own web page from scratch. Keep in mind, a text program is NOT the same as a word-processing program, such as Microsoft Word. If you use Word, you may accidentally save your file as a .DOC, and in doing so, create all kinds of coding problems that make your page look crazy. NEVER create web pages in Word!

Here are three salient points about writing HTML code.

1. Your text editing program does not recognize paragraph returns when you type them with the Enter key. You will separate your text manually, using HTML tags such as < P > and < BR >.

2. HTML code does not differentiate between capitals and lowercase. Your tags can be typed either way and they’ll still work no matter what.

3. HTML doesn’t recognize Smart Quotes- those curly quote marks that Word and other word processing programs like to convert your straight quotes (or inch marks) into when you least expect it. HTML also doesn’t recognize “curly” apostrophes (as opposed to straight ones, or footmarks). If you use these in your web documents, the computer will interpret them as code and fill your web page with gibberish. So DON’T USE SMART QUOTES OR CURVED APOSTROPHES!

Creating a Text Document: the Basis for Your Web Page

Start a new file in your text program such as Notepad, then save it with the .html extension. For example, you might name your file, “myfirstwebpage.html”. Later, after you’ve entered your code into the text program, view the page as it will appear on the web by using a web browser such as Explorer or Netscape. Click File>Open, and then enter the name of your file. Viola! There’s the web page that YOU created! The great thing about this feature is that you can keep on saving your text file and refreshing the browser page to track your progress.

Keep in mind that the pages you create and save as .html files won’t be available for viewing on the internet until you publish them. This is done by purchasing a web hosting package through one of the major web hosting companies; for example, GoDaddy.com. You’re required to “rent a space” for each web domain you own. But that’s a topic for another article entirely.

Now comes the fun part: uncovering the “secret” to HTML! HTML is logic-based; and for those of us who love a good logic puzzle, this is truly a beautiful thing.

HTML Tags at Work

In viewing the source of web pages, you may have noticed a lot of these things: < >. They’re called HTML tags, and they’re what the computer uses to interpret the HTML code.

NOTE: in this article I had to add spaces to all of my HTML tags so that I could display them without actually having them work. There are two HTML tricks to actually “shutting off” HTML tags, but neither of them function properly in this submission box.

The HTML tags shown here will display like so: < FAKE TAG > but in reality you’re supposed to type them like so:

.

Moving along, a friend of mine describes HTML tags as “on/off switches.” An easy example which you may be well-familiar with, is the Bold command. To “turn on” Bold, type < B > (but with no spaces). All of the text that comes after the Bold tag, will then be Bolded. To “turn off” the bold characteristic, type < /B >. Any text that comes after the “bold off” tag will unbolded.

It’s worth mentioning that in all cases, all text that falls between an “on” or “off” HTML tag will take on the characteristic of that tag descriptor. How much text can you put in between two HTML tags? As much or as little as you want. That means, you can use just a couple of HTML tags to design paragraphs and paragraphs of text.

What are some other HTML tags that web designers frequently use?

< I > and < /I > (for italics)
< U > and < /U > (for underline)
< BR > (to create a single line break).

In most but not all cases, if you activate an HTML tag by enclosing it in these: < >s, you must also deactivate it at some point, as in < I > and < /I > for italics shown above. An exception to this rule is < P >, or paragraph separator tags, and < BR > or line breaks.

Specifying Multiple Text Characteristics Within a Single HTML Tag

HTML tags work in different ways, depending on the aspect of the design they’re controlling. As I mentioned above, you can control all elements of web design via HTML codepage separation, text formatting, image placement, design layout, and hyperlink insertion. For this reason, one HTML tag can include multiple variables. This sounds a lot trickier than it is.

For example, a tag with multiple variables enclosed all in one of these: < >, can be used to format text. An equals (=) sign is used to specify multiple characteristics within a single HTML tag. To tag a section of text for font specs, begin with:

< FONT FACE=

Using no spaces after the equals (=) sign, type your font name in quotes, as so: “arial”. You can also specify the size and color here. In the same tag that says to close. Your font tag will now look like this:

< FONT FACE=”arial” SIZE=”2″ > (but with no end spaces).

If you wanted to, you could also include a color for the text within that tag. The color is entered in the same way as the font face and size, and is named within its own set of quotation marks either in a basic name such as “black” or “red”, or a 6-digit numerical code that begins with a number sign.

So, an HTML tag that designates a paragraph typed in Arial font at the 2nd smallest size of type, in the color black, would look like this:

< FONT FACE=”arial SIZE=”2″ COLOR=”black” >

All of the type that came after this HTML tag would take on the characteristics above. Once you wanted to “shut off” the font characteristics of that blurb of text, you would type the tag < /FONT >.

Using HTML Tags to Add Images to Your Web Page

Now suppose you wanted to add an image to your webpage. And let’s assume the image was already located in the folder of your website where images are stored. In order to make the image appear in your NEW web page, you need:

1. the complete web address of your website (such as http://www.wordfeeder.com),

2. the folder (or subdirectory) on your server where images are kept, and

3. the file name of the image (ends in .jpg).

The HTML code used to “pick up” an image from a source is IMG SRC. As always, it belongs inside those handy bracket-things. So your tag would begin:

< IMG SRC=

Without typing any spaces before or after the = (equals) sign, you’d then paste the URL of where the image is located (as explained in examples 1, 2 and 3 above), and follow with the filename and .jpg ending. I’ll illustrate this with an example from my own web collection of images:

< IMG src=”http://www.wordfeeder.com/sitebuildercontent/ sitebuilderpictures/wordfeederlogox.jpg” mce_src=”http://www.wordfeeder.com/sitebuildercontent/ sitebuilderpictures/wordfeederlogox.jpg” >

By typing that HTML tag with the specific web address and folder information/filename within quotation marks, the computer knows the origin of the image, and will then “hyperlink it” into your web page.

If you’re ever unsure of the filepath of an image you need, go to the webpage where it’s located and then right-click the image. Under “properties”, you’ll find the complete URL path that must be typed in between the two quotation marks that fall inside your Image Source tag.

Note: you do not need to “shut off” an image tag.

You can also include multiple variables within a single image tag. For example, if you wanted to left-align the above image, you’d edit the above tag to look like this:

< IMG src=”http://www.wordfeeder.com/sitebuildercontent/ sitebuilderpictures/wordfeederlogox.jpg” mce_src=”http://www.wordfeeder.com/sitebuildercontent/ sitebuilderpictures/wordfeederlogox.jpg” ALIGN=left >

Hyperlink Tags for Email and Website Addresses

Ever wonder how webmasters create live links? A live link might say something like, “Click here for more info!” and then when you click there, you’re suddenly transported to a new web page. A live link is simply type covering a website address. Check it out:

< A href=”http://wordfeeder.com” mce_href=”http://wordfeeder.com” >Visit Wordfeeder for more info!< /A >

That’s HTML code for “hyperlinked text”. It looks weird, but think about it this way. The first part in that’s enclosed in these: < >, is what turns on the “make the following words into a link that leads to the address I am typing here” function. The end tag, < /A > is what “shuts off” the “hypertext linking” feature and will then let you resume typing in normal, unlinked text.

As you can see, by typing a few simple HTML tags, you can create some pretty amazing things. This article is just the tip of the iceberg. I hope that the explanations and examples shown have at least provided a basic understanding of HTML for you. A great way to learn is by “studying” other people’s web page code from the View>Source window. You practice by copying their HTML code into your own fake pages, and filling in the “meat” between their “on” and “off” tags with text and images that suit your own purposes. But be careful. If you paste HTML incorrectly, you can totally wreck and corrupt your document.

For folks who want to get into serious design, I highly recommend that you buy a comprehensive HTML guide. Once you get the hang of HTML, there’s no telling what you can create!

Copyright 2005 Dina Giolitto. All rights reserved.

 

ABOUT THE AUTHOR

 

Dina Giolitto is a New-Jersey based Copywriting Consultant with nine years’ industry experience. Her current focus is web content and web marketing for a multitude of products and services although the bulk of her experience lies in retail for big-name companies like Toys”R”Us. Visit http://www.wordfeeder.com for rates and samples.

HTML - Finding a Good HTML Editor

Tuesday, February 7th, 2006

>

Once you’ve decided to write your own HTML, and you’ve got some idea of how it all works, there’s one thing left to think about: which program are you going to use to do it? While you can use programs like Notepad or Wordpad that come with Windows, they don’t have any specialised HTML editing features, and that can slow you down more than you’d think.

The choice of HTML editors out there, though, is bewildering: there are literally thousands. Here’s a guide to things you should look for when you’re searching for your perfect HTML partner.

Syntax Highlighting

One of the most vital features for any editor is syntax highlighting. This means that it understands how HTML works, and will make tags a different colour from text, making it easier for you to see what you’re doing.

You should try to find an editor that has up-to-date syntax highlighting and checks whether your tags are valid or not. Instead of just colouring anything you put between angle brackets, it should check whether what you’re entering is valid HTML, and warn you if it isn’t (usually by turning it red).

Another thing to look out for when it comes to syntax highlighting is what the editor supports that you might want to use with HTML: it’s good to have highlighting for CSS and Javascript, as well as PHP or Perl (or whatever you use server-side). Some editors mark them in the same colour to indicate ‘not HTML’, while some highlight them in a useful way - this is what you want.

Tag Suggestion

It’s good to get an editor that knows about valid HTML tags and how they’re structured, as that means it can let you know what you should be including and let you browse through tags to find the one you’re thinking of. If you type ‘

Tag-suggesting editors can often save you typing, if they come up with a drop-down when you start typing and allow you to accept their suggestions easily by pressing tab or space. This can speed up your HTML editing significantly.

FTP Upload

It will save you quite a lot of time if the HTML editor you choose has a built-in FTP upload facility, allowing you to enter your server, username and password, and upload the files you’ve just edited to the server. If your program doesn’t do this, you’ll have to use a separate FTP program and mess around finding where you saved your files.

Easy Text to HTML Conversion

If you’re making a lot of text content into HTML, one important feature to look for is easy conversion - otherwise you’ll spend a long time putting

tags at the start and end of each paragraph. Ideally, the software should be able to spot pieces of text that are headings, lists and so on, and add HTML tags for you automatically. It won’t be helpful for everyone, but for text-heavy pages it’s indispensable.

You might also be able to find editors that can accept input in text formats that aren’t plain text - Microsoft Word documents, for example - and turn it into sensible HT

A Few Suggestions

Metapad (www.liquidninja.com/metapad). A good drop-in replacement for Notepad, but lacks HTML-specific features.

SciTE Editor (www.scintilla.org) has excellent syntax highlighting, making it easier to be sure that you’re writing correct HTML tags and you haven’t made any layout mistakes.

Crimson Editor (www.crimsoneditor.com) is popular, although you might find it a little technical. Its biggest advantage is that it has built-in FTP uploads.

HomeSite (www.macromedia.com/software/homesite). Has good tag suggestion features, although it might be a little bulky for some tastes. Very good if you have trouble remembering tags.

As a final note, you might try editing HTML in the ‘code view’ of one of the visual editors - Dreamweaver is especially good at this, if you have it. This lets you switch back and forward easily to see what effect your changes are having.

About the Author

Original Source: Eclipse-Articles.com - Serving over 25,000 Articles.

Information supplied and written by Lee Asher of Eclipse Domain Services
Domain Names, Hosting, Traffic and Email Solutions.