DIR Return Create A Forum - Home
---------------------------------------------------------
The New DS computer forum!!
HTML https://dscomp.createaforum.com
---------------------------------------------------------
*****************************************************
DIR Return to: Web site Programing
*****************************************************
#Post#: 592--------------------------------------------------
HTML Tutorial #2
DIR By: xboi209
Date: September 2, 2011, 8:50 pm
---------------------------------------------------------
Back on tutorial #1, we've learned the <html> and <p> tags as
well as closing them and comments. My example code was:
--- Code ---
<html>
<!-- I am going to say Hi -->
<p>Hi xboi209</p>
</html>
--- End Code ---
Now what if I wanted to link "xboi209" to my profile? Well
here's what I would do:
--- Code ---
<html>
<!-- I am going to say hi and link "xboi209" to my profile -->
<p>Hi <a
href="
HTML http://www.dscompforums.tk/index.php?action=profile;u=13">xboi209</a></p>
</html>
--- End Code ---
I can remember this code off the top of my head since I've used
it numerous times. Bookmark this tutorial and refer to the code
above when you want to link something. It'll help if you read it
over and over again.
Now we will move on to using bigger font sizes with html. Just
remember that there are 6 font sizes you can choose from. The
biggest is 1 and the smallest is 6. Here's an example tag:
--- Code ---
<h1>Hello</h1>
--- End Code ---
This should be quite easy to pick up. Now we will be making the
text underlined, bold, and italic. This should be very easy to
understand, all you have to do is remember the first letter of
each of those words.
--- Code ---
<u>Underlined</u>
<b>Bold</b>
<i>Italic</i>
--- End Code ---
Now if you're typing a FAQ page or something that will be long,
you don't have to skip lines while coding to actually skip lines
on the page. You can use <br> to skip a line, closing tag for
this is not required.
*****************************************************
Page 1 of 1