Hello! You may of seen my previos BBCode tutorial blogs. Today I wont be teaching you BBCode but instead teaching you html.
So ya wanna build a website Any noob can make a .webs website but if you dont want to be a noob do yourself a favor and do it the better way: accully doing the work. Coding reqires learning it and html is pretty easy and is a main coding type for making a website.
Html is mostly just tags. The main tag is the <html></html> tag. You start and end with this tag. Start by typeing this:
<html>
Then you will make your <head> tag. Type <head> and your curent document should look like this:
<html>
<head>
The head is were you put the things like copyright and webpage title and other stuff. If you want to learn more about head tags start googling! Im gona teach you about the body of your html page. So close off your head with a </head> like this:
<html>
<head>
</head>
Next put a body tag like this:
<html>
<head>
</head>
<body>
The body is were you put the content of your webpage. You should write what you want on your webpage there. Videos and pictures need to have the htmlcode to put them on the website. You can get that by uploading on imageshack.
You should use the <p> tag for paragraphs. For colored or sized text use a <font> tag. Obserb the following example of a body:
<html>
<head>
</head>
<body>
<p> <font color=blue size=20> <u> This is my website </u> </font> </p>
<p> <font color=black size=10> Random paragraph of text. lolwut? </font> </p>
</body>
</html>
Always end with a </html> at the end of your webpage.
I will fish off with some html tags for you to use in your body.
<font>=the font color and size, add a color= and a size= into the font tag.
Hull - Could you still use <strong>?
Oh, and a few notes on this blog:
- When adding attributes, it's best to -use quotes. Eg. color="limegreen", or style='border:1px solid black;'.
- Maybe you should have added the <div> tag, it's basic, but realy helpful!
Its good but there are some spelling errors and try not to say stuff :1 ... Its hard not to do it... I always used to. You can delete this comment ok? :1 just do a spelling check ;1
Rather than using most of those tags, I would use a <div>, <p>, or <span>, with CSS. The <u>, <b>, <i>, <del>, and <center>, have all been marked for deprecation in HTML5 and XHTML1 - meaning they will be removed in the next version. The following styles are equivalent:
<u> = text-decoration:underline
<b> = font-weight:bold
<i> = font-style:italic OR font-style:oblique
<del> = text-decoration:line-through
<center> = float:center OR text-align:center