How do you send a html newsletter through Outlook mail?

Friday, January 22nd, 2010

I am writing a company newsletter and I would like to send it through Outlook mail. The problem is after I designed the newsletter in Dreamweaver and put the code in outlook it does not come up. Just the html code is displaying. Can someone please help me with making my newsletter viewable.

Can’t just dump html code onto an email in any email client. You must load the newsletter as an html file which it is.

[PDF] How to Create a Newsletter in Outlook Express: http://www.career-booster.com/How%20to%20Create%20a%20Newsletter%20in%20OE.pdf

How to Create HTML Emails in Outlook: http://www.ehow.com/how_5067740_create-html-emails-outlook.html

Only your client’s will see the html newsletter if they have opted to receive HTML and not text only email.

Additional help…

Staying in touch with customers: Create an e-mail newsletter in Word: http://office.microsoft.com/en-us/word/HA010451061033.aspx

Ron

Technorati Tags: , , , , , , , , , , , , , , , , , , ,

How can I create a game with html codes?

Wednesday, January 20th, 2010

I don’t want to download a single thing and html seems easy. Is there anyway to create a game with html?

html is not really designed for making games. But you can create games for a web-browser using javascript. There’s nothing to download either.. you can simply type the code into a html text document and open it in a web-browser.

Now if you want to use just html you could create a ‘choose you own adventure’ where the player is the protagonist in a story and has to choose from a number of options what to do at certain points in the story. html would be perfect for creating a game like this.

Technorati Tags: , , , , , , , , , , , ,

What is the HTML code to display text without further page loading?

Wednesday, November 18th, 2009

I have seen some sites with something written like this "show details" or "Review" etc.. When we click on it some text gets displayed without loading the web page… Can anyone tel me the html code to do it?

its simple linking!
web page with a links saying "show details" or "Review" are simply linked to a new web page similar to that you were on so that you feel that the rest of the text just popped out of nowhere when you clicked on the link or button but its a whole new page.
hope i solved your problem.

Technorati Tags: , , , , , ,

Are there any Web search engines that index and allow searching of HTML code itself rather than text content?

Tuesday, November 17th, 2009

Is there a Web search engine that allows users to search the html code of all sites it indexes, rather than just the text displayed on the site (eg. Google)?

If you think about it, if there was a search engine that searches the html code of websites, if you search for the <html> tag, guess how many results you would get?

Likewise, if you were to search for the <td> tag, websites with hundreds of tables would be high in the results.

And there aren’t very many tags in HTML. You got tables, divs, links, images, but there isn’t very much else you can search for.

Google has an open source code searcher, but that would be the closest to get to a source finder.
http://www.google.com/codesearch

Technorati Tags: , , , , , , , , , , , , , , , , , , ,

What is the html code for text over images?

Friday, November 6th, 2009

What is the html code for text to appear when someone moves the mouse over a picture?

People never know what they are talking about. The alt="" attribute is NOT the attribute that shows the tooltip popup on a mouseover of an image. Although Internet Explorer does show the tooltip on a mouseover using the alt="" atribute, it is doing it WRONG!

The proper attribute to use in jus about any tag is the title="" attribute. Add this one with the short text description you want along with the alt="" attribute to stay within proper coding standards.

Ron

Technorati Tags: , , , , , , , , , , , , , , , , ,

What is the html code to display slide out text?

Friday, November 6th, 2009

In some sites i have seen, where ever the user scrolls(whether up or down) a box with text or image also scrolls with it… Can anyone tell me the html code to do it in my site?

I believe its actually Java Scripting within html code that enables this effect. Click this link —> http://javascript.internet.com/image-effects/menu-sliding-image.html

It has the sript all written out. Cheers!

Technorati Tags: , , , , , , , , ,

What is the html code to put certain text on a colored background?

Thursday, November 5th, 2009

I want to know how to do html code so that i can have some text on a light blue background, and some text on a light pink background, for a blog i’m creating that has his/her comments… sort of like when you quote someone in a forum, and it shows up on a different colored background (just where the text is) so that you know it’s not the writer saying it, but quoted text… sorry if this doesn’t make sense… does anyone know what the code is to do this? thank you!

Hex codes might be good.

Try the link below to get a hex code you want.

Then your codes would look something like this:

(Light blue)

<div style="background-color:#8798FF;">
Comment goes here.
</div>

(Link pink)

<div style="background-color:#FF98C6;">
Comment goes here.
</div>

So it’s the same code;-just replace the hex codes with the ones you generate. (The hex codes here are 8798FF and FF98C6).

And you don’t have to use divs, it can be paragraph tags or whatever. Your choice.

Technorati Tags: , , , , , , , , , , , , ,