Forums
Html Hyper text markup language - Printable Version

+- Forums (https://techment.createmybb.com)
+-- Forum: Other (https://techment.createmybb.com/forumdisplay.php?fid=11)
+--- Forum: Codes & Programming (https://techment.createmybb.com/forumdisplay.php?fid=13)
+--- Thread: Html Hyper text markup language (/showthread.php?tid=55)



Html Hyper text markup language - Duck - 02-20-2007

If you want to test all this open notepad, type the code in and do not save as a .txt instead save as a .html
Right this Thread is all about basic html coding for starters:

A title is as easy abc basicly is just <title>Text</title> It will become big in the design, not the code.

A header is the most useful in my opinion as it has various Sizes:
The biggest is <h1>This is a heading</h1>
followed by <h2>This is a heading</h2>
then<h3>This is a heading</h3>
and then <h4>This is a heading</h4>
Etc all the down to <h6>text here</h6>


A paragraph is rather easy its just <p>Text here</p>
So you could have: <p>I have just coded the techment website and love ducks</p>

To do bold/italic/underlined and striked text within a paragraph,title or a header just do the following for bold text do <b>Text here</b> for Italic text do <i>Text here</i> for underlined do <u>underlined</u> for striked text do <s>Text here</s>

Now to do hyperlinks all you have to do is <a href="link here">Text</a>
That will create a hyperlink within paragraph, title, header ETC

With this you will be able to create a basic html document which should get you started.