Blog EntryHTML cheat sheetNov 3, '07 1:37 AM
for everyone

OVERVIEW

For those who are new to HTML before you feel overwhelmed lets learn a couple basics and try to disprove the thought "Only compter programers can learn HTML". Lets think of it this way. If you go into this thinking it is unlearnable or that you may be untechable, throw those thoughts away and remove the biggest barrier to learning....... what I call the "I can't do that" thoughts. We all have the ability to be the little train that could but before that we must believe we can. So here is some easy to learn HTML that you can add to comments or your multiply (section headers/titles see the marquee code usedat top of my web sites page) to dress them up a bit. If you learn HTMl gradually you will find the more you try it the better you get, and the more you will remember / retain.

<strong>insert text here</strong>
<b>insert text</b>
The strong and b commands (also called TAGS) both make text bold. you need a start tag and a stop tag the start looks like <strong> and the stop looks like </strong> (notice the stop comand has a / before the command text) the text you want to bold will be between the start and stop commands. (also could be called the begin and end commands)

So basicly you create these html commands with your desired text or pictures. Then copy it and paste it into comments or other sections of your web page or blog.

HTML is basic web programing / formating. You are creating commands that will tell the computers how and what to display.
====================================================
Links to valueable HTML resources

Here is a link to some Common HTML Codes
Here is a link to Color codes change color of text
More HTML help web sites:  http://www.computerhope.com/learnhtm.htm#a 
  (a very good and easy to understand help site)

Link to CSS Reference css is style sheets for formating a web page. Cascading Style Sheet - instructions format whatever you put up, although your instructions may be overridden by the site (sometimes, appending !important helps). CSS instructions are entered inside an HTML STYLE tag.
Other Refernce Link: http://www.mandarindesign.com/style.html
=====================================================
CHEAT SEVEN

Setup html for adding a picture with "alt text" and if you click the picture it opens a link to a web address in a new window. hight and width can also be changed

Example:
<P><A href="http://ianbach.multiply.com/music/item/74" target=_blank><IMG height=200 alt="The Clash - London Calling" src="http://ianbach.com/images/london-calling-744583.jpg" width=201></A></P>

Preview:
The Clash - London Calling

<P><A href="http://choose a web link address" target=_blank><IMG height=200 alt="choose the text to display when mouse is over the image" src="http://choose the pictures address" width=201></A></P>

NOTE: the alt text (which will appear when a mouse is over the picture) is used by browsers to add content into search engine results. i.e. use alt text to improve search engine rankings.

You can add the <center> ( start command ) </center> ( stop ) or <marquee>
=====================================================

CHEAT SIX - IMAGE COMMANDS / HTML

Example - Basic image html command with size and alt text.
<img src="http://images.ianbach.multiply.com/image/5/photos/7/600x600/6/uss-constitution.jpg?et=BomZab1DfouQXP5dm7OOMw" alt= "still image of the USS Constitution" width="200" height="122" /> - notice how this command is all within one tag < >. at the end of the tag is the /> indicating end HTML command. The picture I am using was one I added to my photos. I went to the photo clicked it to open to the lage view and did a right click with my mouse over the picture. A menu will come up and choose "properties" at bottom of the small menu (window). A window will pop up telling you information. There you will see address (URL) mine said http://images.ianbach.multiply.com/image/5/photos/7/600x600/6/uss-constitution.jpg?et=BomZab1DfouQXP5dm7OOMw so I copied that info and pasted it here into the html image code. Also that same windows tells me the image's size is 600 x 367. So I want to make it one third that size. 200 x 122. 

 

Preview:

still image of the USS Constitution

On this one I wondered why was it centered? I didnt enter anything to center it in the html I pasted. Well I looked (see the edit html button up top right?) I normaly put  a ???????????? before I click edit html so i can see where I am at. Well there was this command <P align=center> (before my html) and  </P align=center> (after my html). the <P> command is Paragrapgh. So what the <P align=center> commandd does is to tell the web browser that this is a paragraph with center alignment.

More Image Commands

Example - Here I changed the image size and stretched it.
<img src="http://images.ianbach.multiply.com/image/5/photos/7/600x600/6/uss-constitution.jpg?et=BomZab1DfouQXP5dm7OOMw" alt= "still image of the USS Constitution" width="600" height="122" />  

Preview
still image of the USS Constitution

Example - Enter a Link
<img src="http://ianbach.com/images/anke-edit.gif" alt= "moving image of Cleric in Everquest the Game" width="150" height="160" />
This is a moving image

Perview
moving image of Cleric in Everquest the Game

Note that the html codes for inserting a moving image is no different from that of a non-moving image.

Lets add <marquee> </marquee> codes before and after the picture html

still image of the USS Constitution

More image html command help CLICK HERE

Click Here for a cool website where you can edit a sample html and click preview

===============================================

CHEAT FIVE - Basic Commands / HTML

Example: <CENTER> - Tells the web browser to center the text.

<CENTER>This text would center on the page.</CENTER>

Preview:

This text would center on the page.

More Basics

Example - Change color of text
<font color="blue"> Enter text here </font>

Preview
Enter text here

Example - Enter a Link
<a href="http://www.ianbach.com">enter link name or description here</a>

Perview
enter link name or description here

Example - Lets look at how to combine HTML codes.

black or default color text entered here <font color="blue"> Blue colored text entered here </font>black colored text continued here.

Preview

black or default color text entered here Blue colored text entered here black colored text continued here.

Example - Ok now we will see what happens if we add another command and mix the start and stops throughout the text. Each command starts when you tell it when and where to start and stops when you tell it to.

black or default color text entered here <em> black text in italics <font color="blue"> Blue text in italics </em> Blue colored text entered here </font>black colored text continued here.

Preview

black or default color text entered here black text in italics Blue text in italics Blue colored text entered here black colored text continued here.

================================================

CHEAT FOUR - Marquee

Create a banner text that scrolls across the text box.

This command <marquee> text </marquee> is very cool thanks to andreym24 for the cool new addition to this fun Blog I use it often. I come back here copy my old commands, edit them up a bit, and woot. makes it easy so I don't have to think about it much. I  just copy, paste, and edit. Thanks to all those who have contributed, and to those who find this to be a usefull tool.

<span style="font-size:14px;line-height:17px;"><marquee>Text Here</marquee></span>

<Marquee>test</marquee>

=======================================================

CHEAT THREE - Edit Text
Here I want to explain how to edit your text using HTML. This will give you more flexability and enhanced features / abilities. Also you can use this in comments and other areas that do not give you editing options. Most of the options used here are available in the Blog entry features.

Let's start with something basic.

<span style="font-size:14px;line-height:17px;">Text Here</span>

ok the Font size is the hieght of the text and the line hieght is the spacing plus text. So for double spaced text you would type 28  (in the line-height area) for a font-size of 14.
                 ---------------------------------------
Here is a more advanced text edit and HTML

Preview

<div style="text-align:center;"><font face="Times New Roman, Times, serif" color=#0000bf size=3><strong><em>Insert Text Here</em></strong></font></div>

All the above areas to edit are pretty easy but lets see what we have.
NEW**<p style=style="text-align:position"> = you can enter left right or center
You can use the <p> (paragraph define tag / code) instead of the div command / tag

* <div style="text-align:position"> = you can enter left right or center
* <font face="enter the font style" - you can enter arial, times etc, here
* <strong> = Bold
* <em> = italics
* Insert text here = sutitute this text for the text you would like to enter.
* Size= this is a more basic sizing method then the above mentioned method
* <Color=  I will try and make a color chart for different comonly used colors. The above color command is dark Blue.
** Notice how you have a begining and end HTML commands. Stuff like <strong> - <strong> goes before the text and </strong> goes after the text. Notice how the HTML command after has a / that is to indicate the close or end of the command.

Example

<p style="text-align:center;"><font face="Times New Roman, Times, serif" color=#0000bf size=3><strong><em>Insert Text Here</em></strong></font></p>

Preview

Insert Text Here

============================================================

CHEAT TWO - New Turtle
I wanted to edit my st HTML test and change the  pisture and alt text and the href (linl)

For now I saved a turtle today and will be watching him close and am currently working to find out what food and stuff I need for him. My friend bought a house nearby and the old pool had been a koi pond. He had the pool drained so I stopped by to grab the turtles. One is already missing and hopefully he is lucky enough to find a new home.

Here is a pic of the little guy.

<a href="http://ianbach.multiply.com/" target="_blank"><img src="http://ianbach.com/images/turtle-seven.jpeg" border="5" align="middle" alt="New pet Turtle">

===========================================================

CHEAT NUMBER ONE
How to create a picture using html. (the picture will have alt text, href, and other cool things. (explained below)

I will be updating this as I regain some of the knowledge I have forgotten or haven't learned yet.

http://ianbach.com/images/artclimber.jpg

If I want to display that image file as a picture lets start with a HTML picture from my dot com that has alt text and also if you click the picture it sends the user somewhere.

Second Edit

 

ok I had to publish the post so that I could get the link for this specific blog entry

 

http://ianbach.multiply.com/journal/item/181/HTML_cheat_sheet

 

<a href="http://ianbach.multiply.com/journal/item/181/HTML_cheat_sheet" target="_blank"><img src="http://us.i1.yimg.com/us.yimg.com/i/us/smallbiz/gr/hostedby.gif" width="118" height="45" border="0" align="middle" alt="Hosting by Yahoo! Web Hosting">

ok now we have to edit that mess and lets first see what is above

Here is a more simple view of the above html

<a href="insert link here" target="_blank"><img src="picture's web address" width="150" height="200" border="0" align="middle" alt="enter the text you want to be seen when a mouse cursor is over the picture">

ok heref means if this is where you go if you click.

target = blank (i think means open in a new window)
Please correct me when I am wrong also hehe I don;t mind at all, I love when I can learn and I am open to input

the width and height is in pixels and you can picture the size based on your current screen size. Most people run theirs by default at 800 x 600 or 1020 x 780  something like that so time to use those fractions eh hehe.

ok so lets see if this works

I want to send people back to this blog entry so I published it then went back to edit.

Now I can copy open the blog entry's link
http://ianbach.multiply.com/journal/item/181/HTML_cheat_sheet

I want this for my Picture
http://ianbach.com/images/artclimber.jpg

and if that's not enough I want text to pop up when a courser goes over the picture here is the text I will add:
Hello all from Ian Bach -------------I will you can click here to view my HTML CHEAT SHEET -------------- I will be working on this for a while and updating it as I find new tricks I have forgotten. I hope you find it to be a useful tool

here is how it looks after I edit

<a href="http://ianbach.multiply.com/journal/item/181/HTML_cheat_sheet" target="_blank"><img src="http://ianbach.com/images/artclimber.jpg" align="middle" alt="Hello all from Ian Bach -------------I will you can click here to view my HTML CHEAT SHEET -------------- I will be working on this for a while and updating it as I find new tricks I have forgotten. I hope you find it to be a useful tool">

 

now I will try it

(check comments to view the tests - examples)

-----------------------------------------------------------

 

well it worked but it is a little large eh??

 

ok lets go back and this time edit the height and width instead of deleting that text (which makes the picture go to default / original size)

 

here is my next attempt which will try and make it a size that won't get people made if I post it. hehe

 

<a href="http://ianbach.multiply.com/journal/item/181/HTML_cheat_sheet" target="_blank"><img src="http://ianbach.com/images/artclimber.jpg" width="100" height="150" border="0" align="middle" alt="Hello all from Ian Bach -------------I will you can click here to view my HTML CHEAT SHEET -------------- I will be working on this for a while and updating it as I find new tricks I have forgotten. I hope you find it to be a useful tool">

 

ok lets try that size now - (see comments for the results)

-----------------------------------------------

 ok woot it worked roflmao

 

here lets add a thick boarder the higher the number the thicker the boarder should be

 

lets try

 

<a href="http://ianbach.multiply.com/journal/item/181/HTML_cheat_sheet" target="_blank"><img src="http://ianbach.com/images/artclimber.jpg" width="100" height="150" border="5" align="middle" alt="Hello all from Ian Bach -------------I will you can click here to view my HTML CHEAT SHEET -------------- I will be working on this for a while and updating it as I find new tricks I have forgotten. I hope you find it to be a useful tool">

 

---------------------------------------------------------------

 

oops just noticed the "alt" text has a typo

 

so lets try this

 

<a href="http://ianbach.multiply.com/journal/item/181/HTML_cheat_sheet" target="_blank"><img src="http://ianbach.com/images/artclimber.jpg" width="100" height="150" border="5" align="middle" alt="Hello all from Ian Bach -------------You can click here to view my HTML CHEAT SHEET -------------- I will be working on this for a while and updating it as I find new tricks I have forgotten. I hope you find it to be a useful tool">

-----------------------------------------------


66 CommentsChronological   Reverse   Threaded
Comment deleted at the request of the author.
ianbach wrote on Nov 3, '07
here is my attempt to make it smaller

Hello all from Ian Bach -------------I will you can click here to view my HTML CHEAT SHEET -------------- I will be working on this for a while and updating it as I find new tricks I have forgotten. I hope you find it to be a useful tool

ianbach wrote on Nov 3, '07, edited on Nov 3, '07
This one has a boarder addedHello all from Ian Bach -------------I will you can click here to view my HTML CHEAT SHEET -------------- I will be working on this for a while and updating it as I find new tricks I have forgotten. I hope you find it to be a useful tool
ianbach wrote on Nov 3, '07
ok here is my final product for this test

Hello all from Ian Bach -------------You can click here to view my HTML CHEAT SHEET -------------- I will be working on this for a while and updating it as I find new tricks I have forgotten. I hope you find it to be a useful tool

ianbach wrote on Nov 3, '07
I will be adding more HTML tips as I use em.
tantalite wrote on Nov 3, '07
Thankyou Ian. I have found this very helpful indeed. Please add me as a friend so I do not miss a thing!
mamabearcherei wrote on Nov 3, '07
The one I've noticed that people need to know.. making those fonts BIGGER and readable! lol
Comment deleted at the request of the author.
ianbach wrote on Nov 3, '07, edited on Nov 3, '07
editdeletereplyianbach wrote today at 7:19 PM
thanks cherei I will work on one that is easy.

For now I saved a turtle today and will be watching him close and am currently working to find out what food and stuff I need for him. My friend bought a house nearby and the old pool had been a koi pond. He had the pool drained so I stopped by to grab the turtles. One is already missing and hopefully he is lucky enough to find a new home.

Here is a pic of the little guy.

New pet Turtle
ianbach wrote on Nov 4, '07
Cheat Number Three - Test

Text Here

Comment deleted at the request of the author.
ianbach wrote on Nov 4, '07
Lets change the font to 30 and line height to 34

Text Here

ianbach wrote on Nov 4, '07
Hello I found a cool easy way to change the text size - Click the photo to view My HTML Cheat Sheet

HTML Cheat Sheet
rachel70 wrote on Nov 4, '07
Thanks Ian!
mamabearcherei wrote on Nov 4, '07
Hmmm.. they need to have this in the KISS method.. lots of folks will NOT understand how to write code. Dang coders think everyone knows this stuff.. trust me.. they DON'T! lol.

ianbach wrote on Nov 4, '07
What is the kiss method????

I know html may seem way over our heads. yet hopefully my simple way of speaking will make it more attainable. For me its like electricity most people are too freaked out to try and learn it. But the basics are rather easy to grasp I think. At least with html you wont get electricuted if you mess up..hehe. So trial by error is a good thing here. I know I still mess up on html sometimes, and have to go back and look at it to find what i did wrong.
Comment deleted at the request of the author.
Comment deleted at the request of the author.
Comment deleted at the request of the author.
ianbach wrote on Nov 5, '07
Ok I found out KISS stands for Keep It Simple System aka.. NO writing code.. just a simple point and click.

But since we don't have that luxery I will keep thinking up new codes to teach for now. Also on other systems like Google Blogger, Myspace, or dot.coms the html is a good thing to learn and know.

Leave a message here of any code help you would like. Or ideas or codes that you would like to suggest or add.

Thanks all,
Ian Bach
kittybriton wrote on Nov 6, '07
Two places to look for if you are at all techy-minded: The CSS Reference and The HTML tag list.

CSS (Cascading Style Sheet) instructions format whatever you put up, although your instructions may be overridden by the site (sometimes, appending !important helps). CSS instructions are entered inside an HTML STYLE tag.

If you don't understand the concept of tags, I really recommend looking at the next site:

HTML (Hypertext Markup Language) is the language of your browser, the most primitive way to bash text and graphics onto the WWWeb.

For some fancy CSS tricks, the stuff at Mandarin Design is worth a look.
mybrainstillhurts wrote on Nov 6, '07
Thanks for the HTML cheats. I usually visit this page when I need a color code http://cloford.com/resources/colours/500col.htm
andreym24 wrote on Nov 6, '07
This is very useful for people that don't know HTML editing. Marquee is also a cool command for comments.
Thanks for sharing
thelonewolf1 wrote on Nov 6, '07
I koow you had to go to alot of "TROUBLE" for this, HOWEVER it's like trying to read
"ARABIC" to me??? I just "DON"T" know what 2 do??? I'm "NOT" computer "SAVVY" Most Ive
done is by "accident" & "TRIAL & ERROR" & while "I DO" appreciate all that you did 2 "HELP" me'
I "DON"T know "HOW" 2 "APPLY" it...
You are Extremely "KIND" & I am "GREATFUL..."
With My "MOST PROFOUND" Sincerity,
~ ~ Lone Wolf ~ ~
alettajeannette wrote on Nov 6, '07
I'm bookmarking this page...lol..I'm not puter savvy either..but I'm starting to understand. There are some very nice helpful people here in Muliply..The ones who comment below and of course..You..I wanted to try to make the word 'you' larger by using your instrustions...but I backspaced and removed it..if I mess up my page it would be terrible so I don't want to goof and mess up someone is is trying to help..I will go practice some more on my page..thanks for the info..
Comment deleted at the request of the author.
Comment deleted at the request of the author.
ianbach wrote on Nov 7, '07
Very cool command !!! - Thanks for teaching me a new commandAndreym24
ianbach wrote on Nov 7, '07


Thanks you "mybrainsillhurts" for the Link to color codes

http://cloford.com/resources/colours/500col.htm
ericthehamster wrote on Nov 7, '07
This is very helpful indeed!

Is there a way to share/link to this on my pages?

:-)
mousepotato66 wrote on Nov 7, '07
Brilliant! Thanks for all this info ~ I know what I'll be doing with my day off tomorrow now. :)
ianbach wrote on Nov 7, '07
Yes PLEASE feel free to link this

You made link it in a blog post or in you links section etc
here is the dirrect link
http://ianbach.multiply.com/journal/item/181/HTML_cheat_sheet
Thanks - Have a Great Day !!!!!!!
kittybriton wrote on Nov 7, '07, edited on Nov 7, '07
Something else that's worth knowing about:

If you have a Google account, you can use Google Docs to type up what you want, format it your way, include pictures, links or tables, then copy and paste.

Because Google Docs is essentially a fancy front-end for HTML, the end result is still HTML whether in preview-mode or converted to raw HTML (Google Docs has an option to do that too).

I have thought about maybe writing a small utility to help with HTML and CSS coding, but since Google Docs beat me to it, why reinvent the wheel?
Comment deleted at the request of the author.
Comment deleted at the request of the author.
Comment deleted at the request of the author.
fabellina wrote on Nov 7, '07
lots of tips here, thanks
chitownbigirl wrote on Nov 7, '07
Ty ty ty ty ty by the way did I say thank you. he he. Jennifer
utroukx wrote on Nov 7, '07
cool! this is really helpful! thanks! :)
bonniels wrote on Nov 8, '07
This is so neat, thank you.
ianbach wrote on Nov 8, '07, edited on Nov 8, '07
I am going to try a new Idea here to show how placement of the commands effects the final product.

If you see some deleted comments like those above.....Those are ones that didnt work...lol...hehe

So as you can see I am also learning and practicing.

Thanks to all for all the very nice comments,
Best Wishes,
Ian Bach

PS I decided to post the final view / preview of my newer entries into the Blog Post.
stature wrote on Nov 8, '07
I THINK I HAVE GOT THIS< JUST NOT CERTAIN AT THIS MOMENT IF I AM REPLYING ON ALERT OR ACTUAL BLOG> Clicking saubmit will soon tell me!
stature wrote on Nov 8, '07
OK Now all I have got to do is make my tired old brain take it all in - it is SO good, though, Thankyou
thespirited1 wrote on Nov 9, '07
Not know how to thank you, your an angel..huggggles
quenidalee wrote on Nov 9, '07
Wow that is cool and tried the name scroll on my page and love it.
ianbach wrote on Nov 9, '07, edited on Nov 9, '07
Funny video - the ending is great.






mousepotato66 wrote on Nov 9, '07, edited on Nov 13, '07
Ian, thank you so much! This is such a cool thing for you to do ~ I've linked your page so my friends can pop over too. :) It took a little time, and a couple of open browsers so I could go back and forth from my page to yours, but here is my first result... and I'm chuffed to bits with it! :)

Thank god it's Friday! Happy Weekend! :) *hugs*
ianbach wrote on Nov 9, '07
Thanks a ton. All the nice comments really have inspired and motivated me.

The best part is my html knowledge has been improving rapidly as a result.

I am currently working on creating a new portion to my dot com that will focus on HTML and web design. I will likely be adding videos and lots of links to lessons, sources, and resources.
masit wrote on Nov 9, '07
thank you very much..this is really helpful!! :)
Comment deleted at the request of the author.
krisau wrote on Nov 10, '07
thanks ...now you taught me something..im off to practice
xgnration wrote on Nov 10, '07
This looks really cool, I'd like to learn it. Maybe one day in 2009 I'll get it.
ianbach wrote on Nov 12, '07
Iv'e noticed that sometimes pictures or links dont work on some peoples web sites in comments. this is probably changable in "settings"
xgnration wrote on Nov 12, '07
I tried reading the one above, are you talking about creating a pic that if you click on it it brings you to another link? Let me try it...
xgnration wrote on Nov 12, '07
Link to Mitch Hedberg in concert
xgnration wrote on Nov 12, '07
Well, the link works, but there is no pic. Just a red "x".
xgnration wrote on Nov 12, '07
Cool! nevermind, I been practicing, I got it right!
monodogamous wrote on Nov 14, '07
ianbach wrote on Nov 17, '07
SWEEEEETTTTTTT

way cool skeleton
badmedicyn wrote on Jan 2, '08
Thanks for the marquee code! I will be playing with the other tips you have provided ,if you don`t mind.
ianbach wrote on Jan 4, '08
Thanks xgnration I clicked the link and I liked the YouTube Video of the comedian. I love comedy.
ianbach wrote on Jan 4, '08
After I watched some Mitch H. comedy on YouTube I found a video that was pretty trippy. Sorry it may seem a little dark to most people. I also recently saw the series "Dead like me" and loved it I gotta get the DVDs of that.



Mitchell Lee Hedberg (February 24, 1968 – March 29, 2005) was an American stand-up comedian known for his surreal humor and unconventional comedic delivery. His routines featured elocutive but often short, sometimes one-line, observational comedy, mixed with absurd and at times hylozoistic and paraprosdokian elements as well as non sequiturs.
shymom wrote on Nov 1, '08, edited on Nov 1, '08
Thanks Ian for all the tips and help! you rock!
Add a Comment
   
© 2008 Multiply, Inc.    About · Blog · Terms · Privacy · Corp Info · Contact Us · Help