ForumsSupport ForumHTML tutorial

76 23281
master565
offline
master565
4,107 posts
Nomad

<a name= "uphere"> </a>

<h3>Chapter list: </h3>
<br />

<a href="#intro">1) Intro
</a>

<a href="#c2">2) Headers
</a>

<a href="#c3">3) Stylizing color and fonts and sizes
</a>

<a href="#c4">4) Page jumps
</a>

<a name= "intro"> </a>

<H3> Intro </h3>
<br />

Hello there, this is a simple tutorial I made to teach people how to use the new HTML support. This will show how to work with the useful and supported tags.

First things first, all HTML tags are enclosed in angle brackets (< and &gt. This is just the way web browsers know that what follows is HTML.
<br />

<b>IMPORTANT NOTE: all HTML examples in this tutorial will replace all angle brackets with normal brackets
All < = {
And all > = }
I am doing this so that you can see the HTML I am writing for this tutorial without the website displaying the example as the finished product.</b>

HTML tags are started with the tag in the first set of brackets, the content the tags apply to, and ended by that tag with a slash in front of it in the second set of brackets.


Example: â{tag} content {/tag}â

The tags in this tutorial that will be used are

h3, a, and font.

<a name= "c2"> </a>

<h3> Headers </h3>
<br />

Headings are simply used to make titles and the such larger. They are defined with the tags {h1}, {h2}, {h3}, {h4}, {h5}, and {h6}. <b>Remember that all brackets are really angle brackets</b>. The larger the number, the larger the text. <b> Unfortunately, for no particular reason, AG only seems to work with {h3}, and any other sizes will just show up as normal text. In case this is just a glitch and will get fixed, I'll still talk about headers as if you can use any number. </b>

The format for this tag is as follows

{h#}(the text you want to be large) {/h#}

So for example, if you wanted to make something with an h3 size header, it would look like this


<h3> This is large text </h3>
<br />

and the HTML for this was

{h3} This is large text {/h3}



<a name= "c3"> </a>

<h3> Stylizing color and fonts and sizes</h3>
<br />

Using HTML, you can change the font, the size, and the color of the text. To do so, you will use the {font} tag. The {font} tag is slightly different, because in the first part of the tag there is more information about what youâre changing. The format for the {font} tag is this

{font size="(size)" face="(name of font)" color="(color of font)"} The text you want this applied to {/font}

You would replace (size) with the size you want for the font (you use a number, such as 12). You would replace (name of font) with the name of the font (Iâm not sure AG supports all the fonts. And you would replace (color of font) with whatever color you want. You can use name or hex value for color http://www.w3schools.com/html/html_colornames.asp

<b>Donât ignore the quotation marks, those are necessary. </b>

Example:

{font size="12" face="ariel" color="red"} This is an example sentence {/font}

This would turn into
<br />

<font size="12" face="ariel" color="red"> This is an example sentence </font>


<a name= "c4"> </a>

<h3> Page jumps </h3>
<br />

As most people know, you can make links on your profile to bring people to your messenger. Now you can do that to bring people anywhere on your profile. The tag we are using is the {a} tag. The {a} tag is usually used to link people to other pages, but since that is easy to do with the link button, we are going to use it for page jumps. Like the {font} tag, the {a} tag has some information in the first part of the tag. The first part of a page jump is as follows


{a name="(name of link)"} {/a}

This tells the page that this is where you want to jump to. If you place this at the top of your profile, whenever anybody clicks the link we are going to create, it will bring them there. Here is how to make the link

{a href="#(name of link)"} Clicking this text will make the page jump {/a}

Two things to note:

1) (name of link) is changed to whatever you want to name it. You can make multiple page jumps by making multiple names
2) The # <b>is</b> required before the name of the link, so if you named it âlink1â, you would put â#link1â in the quotation marks. This is only for the link, do not use a # in the first part of the page jump where you tell it where to jump to.

Here is an example of a page jump.

<b>Put this at the top of a page</b>

{a name= âuphereâ} {/a}

<b>Put this where you want the link to be </b>

{a href="#uphere"} Click here to return to the top of the page {/a}

<b>And it will look and work like this</b>

<a href="#uphere">Click here to return to the top of the page</a>



<h3> Images, links, bold, italics </h3>
<br />

As just an ending statement, Iâm not going into these because you can already use the buttons above the post box, which are generally easier to use.




If anybody has any questions about anything in this tutorial, feel free to ask.

Final note: I hope all the HTML and formatting came out correctly, this was typed up in Word.

  • 76 Replies
megacooper
offline
megacooper
191 posts
Peasant

got it nevermind. sorry for double post, but how do you scroll a pic?

Patrick2011
offline
Patrick2011
12,321 posts
Treasurer

got it nevermind. sorry for double post, but how do you scroll a pic?


Make a marquee, then put an image inside it. Just make sure the image is appropriate. Also remember that HTML is not preferred on the forums.
superbob111
offline
superbob111
465 posts
Nomad

i am still confused with the big letters
could u send it to here or to my profile

megacooper
offline
megacooper
191 posts
Peasant

Make a marquee, then put an image inside it.


How do I put the image into the marquee? Do I have to save it or something?
Patrick2011
offline
Patrick2011
12,321 posts
Treasurer

How do I put the image into the marquee? Do I have to save it or something?


Insert code for an image inside the code for the marquee.
megacooper
offline
megacooper
191 posts
Peasant

code? do you mean link?

Cenere
offline
Cenere
13,658 posts
Jester

code? do you mean link?

No, he means the coding you need to provide for the image to show.
Like, on the forums it's {img}the direct url for the image{/img} but with [] brackets. You probably have to look it up, if you are going to use them for your about, as I don't think the bbcoding works for images there (though I am sure Patrick will correct me, if I am wrong).

You know, just like if you were combining the codes for bold and italics here, to make the text bold and italic, you need to combine the codes for a marquee and showing an image to get the image to be in the marquee.

But. You do have to save the image somewhere on the internet, so you have the direct link for it, otherwise the image won't be able to work. I recommend photobucket or imageshack.
Patrick2011
offline
Patrick2011
12,321 posts
Treasurer

You probably have to look it up, if you are going to use them for your about, as I don't think the bbcoding works for images there


You are correct in that BB Code images don't work in the about. Here's the HTML code for an image, but replace [] with <>:

[img src="URL of image"][/img]
megacooper
offline
megacooper
191 posts
Peasant

Thanks! Is this right? <img src="http://armorgames.com/image/armatar_141_35.35_c.jpg"></img>

Patrick2011
offline
Patrick2011
12,321 posts
Treasurer

Thanks! Is this right?


That's an image, but it's not moving.
light_chaser
offline
light_chaser
1,044 posts
Peasant

<marquee behavior="slide" direction="right">thanks for all the tutorials, all.</marquee>

megacooper
offline
megacooper
191 posts
Peasant

Thanks, Patrick2011. I have got it now and my page is awesome!

ARJUN071
offline
ARJUN071
230 posts
Nomad

Testing...

<marquee scrolldelay="100">Thank you for this tutorial!</marquee>

mattduggan13
offline
mattduggan13
1,795 posts
Nomad

Alright, after reading 5 pages of letters and numbers, I think I've got it.

<marquee>Is this how you do a marquee?</marquee>

Patrick2011
offline
Patrick2011
12,321 posts
Treasurer

@mattduggan13: Your marquee works.

Showing 31-45 of 76