← Mentorships
This I decided to put this together to help people with HTML coding.
HTML /HTML = Hyper Text Markup Language
__________________________________________________
Head /Head = The head,or prologue,of the HTML document
__________________________________________________
Body /Body = All the other content in the HTML document
___________________________________________________
Title /Title = The title of the document
___________________________________________________
P /P = Paragraph
___________________________________________________
BR /BR = Line Break
___________________________________________________
HR = Horizontal Rule
HR SIZE=? = Thickness (in pixels)
HR WIDTH=? = Width (in pixels)
HR WIDTH=% = Width Percent (as a percentage of page width)
HR NOSHADE = Solid Line (without the 3D cutout look)
__________________________________________________
A /A = Links the current HTML file to another file.
__________________________________________________
href = Hyper Text Reference
___________________________________________________
LI /LI = List
___________________________________________________
OL
LI = Organized List ("LI" before each list item)
/OL
___________________________________________________
UL
LI = Unorganized ("UI" before each list item)
/UI
___________________________________________________
DL = Definition List
DT = Definition Term
DD = Definition
/DT = End Definition List
/DL = End Definition List
_________________________________________________
IMG SRC = Image Source
__________________________________________________
B /B = Bold
__________________________________________________
I /I = Italic
__________________________________________________
Strong /Strong = Strong Emphasis (usually displayed as bold)
___________________________________________________
EM /EM = Emphasis (usually displayed as italic)
___________________________________________________
BLOCKQUOTE /BLOCKQUOTE = Block Quote (usually indented)
___________________________________________________
TT /TT = Typewriter (displays in a monospaced font)
___________________________________________________
PRE /PRE = Preformatted (display text spacing as-is)
___________________________________________________
Table = Start Table
TR = Table Row
TD = Table Data
/TD = End Data
/TR = End Row
/Table = End Table
___________________________________________________
Center /Center = Centers your text.
___________________________________________________