Archive for Html Tags

How to add a “Email Me” link

This article will explain how to forward an hyperlink to an email address.  This is that familiar “Contact” link on the bottom of many websites.

It is really basic, you start with the <a> just like you start every hyperlink.  But this time, instead of using “http://” you use, “mailto” to establish the link.  Follow the example below:

<a href=”mailto:example@sample-email.com”>Contact me</a>

That is how easy it is!  Best of luck with you all.


( February 10, 2010 at 2:07 pm) · Filed under Beginners, Coding, Html Tags, INFO, Necessary Tags, , , , , , ,

Comments

Italic Html Tag

The italic html tag is used to make text slanted as in the example here:

This is an example of a italic text.

To make a text or a word italic we use the “i” tag.

For example; I went to the <i>castle</i> by the river.

This would show like this;

I went to the castle by the river.


( January 9, 2010 at 12:25 am) · Filed under Beginners, General, Html Tags, , , , ,

Comments

Bold Html Tag

This article will explain how to make a text bold. Making a text bold makes it stand out and realizable.  This is like putting make up on everyday so you look fine and noticeable.  Let’s get to the point.

In Html, the tag “b” is used for making text bold.

For example you can do: I used to fish for fun when I was <b>younger.</b>

This will appear like this: I used to fish for fun when I was younger.

As you can see, the text “younger” is bold and stands out.


( January 8, 2010 at 3:02 am) · Filed under ASP, Coding, General, Html Tags, Necessary Tags, Php, , , , , ,

Comments

Scrolling Text

Thsi article will explain the scrolling text html code.  This code is referred to it as Marquee code because the name of the Html tag is “marquee”.

Basic Html code for a Marquee

This is how it will appear on your website:
This is an basic example of a marquee code

Adding a background color to a scrolling text

You can add a background color to your marquee or scrolling text.  The tag used to apply this is called “bgcolor” examine the code below.

This is how it will appear on your website:
This scrolling text example will have a aqua (light blue) background

How to add height, width and direction to your scrolling text

You could also set your height, width and the direction of your scrolling text.


This is how it will appear on your website:
Scrolling text html example of a marquee with height, width and direction


( January 2, 2010 at 12:40 am) · Filed under Beginners, Blog, Coding, General, Html Tags, INFO, , , , , , , , ,

Comments

Basic Html and CSS tutorial

Hey, this video right here will teach you how to start learning Html from scratch. You can start coding right away! Just watch the video and pay close attention.


( December 28, 2009 at 4:16 pm) · Filed under Beginners, Blog, Coding, General, Html Tags, INFO, JavaScript, Necessary Tags, , , ,

Comments

How to change your schollbar color

Making your website unique is a nice thing!  Here is another code you may use to make it differ from other sites, this code changes the scroll bars of your website to any color you choose!

<style>
<!–
BODY {SCROLLBAR-FACE-COLOR: #D4D0C8; SCROLLBAR-HIGHLIGHT-COLOR: #999999; SCROLLBAR-SHADOW-COLOR: #999999; SCROLLBAR-3DLIGHT-COLOR: #ffffff; SCROLLBAR-ARROW-COLOR:  #000000; SCROLLBAR-TRACK-COLOR: #E3E3E3; SCROLLBAR-DARKSHADOW-COLOR: #666666; }
–>
</style>

<a title=”start a site” href=”http://www.start-a-site.com”>How to start a site</a>


( December 17, 2009 at 1:23 am) · Filed under Blog, Coding, General, Html Tags, , , , ,

Comments

Basic iFrame

This article will explain the basic iframe code, on this site, you can also find the well explained version of this article, just type iframe on the website’s search box.

<iframe src=”http://www.example-target-site.com”></iframe>

The above code is what a iframe looks like.  Again you can change the way this iframe looks, just search iframe on THIS site’s search box.


( November 9, 2009 at 11:17 pm) · Filed under Beginners, Coding, General, Html Tags, Necessary Tags, , , , , ,

Comments

Spanish Special Characters

This article contains friendly Html codes for Spanish special characters.  These codes can be so useful using it in your website because sometimes either your server or a browser doesn’t support every character.

Display Friendly Code Numerical Code Hex Codes Description
Á &Aacute; &#193; &#xC1; Capital A-acute
á &aacute; &#225; &#xE1; Lowercase a-acute
É &Eacute; &#201; &#xC9; Capital E-acute
é &eacute; &#233; &#xE9; Lowercase e-acute
Í &Iacute; &#205; &#xCD; Capital I-acute
í &iacute; &#237; &#xED; Lowercase i-acute
Ñ &Ntilde; &#209; &#xD1; Capital N-tilde
ñ &ntilde; &#241; &#xF1; Lowercase n-tilde
Ó &Oacute; &#211; &#xD3; Capital O-acute
ó &oacute; &#243; &#xF3; Lowercase o-acute
Ú &Uacute; &#218; &#xDA; Capital U-acute
ú &uacute; &#250; &#xFA; Lowercase u-acute
Ü &Uuml; &#220; &#xDC; Capital U-umlaut
ü &uuml; &#252; &#xFC; Lowercase u-umlaut
¿ &iquest; &#191; &#xBF; Inverted question mark
¡ &iexcl; &#161; &#xA1 Inverted exclamation point
&euro; &#128; &#x80; Euro
? &#8359; &#x20A7; Peseta

( November 5, 2009 at 9:53 pm) · Filed under Coding, General, Html Tags, Necessary Tags, , , , , , , ,

Comments

Listing Code

This article has Html information that you can use to make a list on your website.  A List is made out of basic <ol> and <li> tags.  Follow the example below:

<ol>
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
<li>List 4</li>
</ol>

This code would appear as:

  1. List 1
  2. List 2
  3. List 3
  4. List 4

( November 5, 2009 at 12:45 am) · Filed under Coding, General, Html Tags, , , ,

Comments

How to make a font bigger

To make your text stand out, you might want to use the <big> tag.  This way, your font will be bigger then usual and it can easily stand out.  For example check below:

When using the <big> tag your font gets bigger.  Make sure to close the <big> tag with a </big> ending tag.


( November 4, 2009 at 12:23 am) · Filed under Coding, General, Html Tags, Necessary Tags, , , ,

Comments

« Previous entries Next Page » Next Page »