URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       The New DS computer forum!!
  HTML https://dscomp.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: Web site Programing
       *****************************************************
       #Post#: 246--------------------------------------------------
       HTML Tutorial #1 [intro] [Official]
       By: xboi209 Date: September 25, 2010, 6:12 pm
       ---------------------------------------------------------
       [center]HTML [Intro][/center]
       First off, to explain HTML it is Hyper Text Markup Language.It
       is the basic backbone of all websites.To start off, you need to
       learn tags(and english =])
       Your very first tag is required.
       [code]<html>[/code]
       Simple huh?Now lets say hi xboi209
       [code]<html>
       <p>Hi xboi209
       [/code]
       Now theres some missing tags.The <html> tag tells the browser to
       execute the code as html.But how does the browser know when to
       stop?You simply copy the tag but put a slash before you type the
       word.
       [code]<html>
       <p>Hi xboi209</p>
       </html>[/code]
       Hard programmers would probably put comments in the code itself
       to remind them what the code is doing or explaining the code for
       other people to edit.These comments are simply ignored by the
       browser and not placed on the webpage.
       [code]<html>
       <!-- I am going to say Hi -->
       <p>Hi xboi209</p>
       </html>[/code]
       That is so simple.Now copy and paste your code onto a notepad
       and rename the extention to .html instead of .txt
       Double click on it and your internet browser will open up and
       show you what you just accomplished.
       *****************************************************