BASICS OF HTML For Hacking with Black Arch Linux

 BASICS OF HTML:


1.Document Outline

< ! Doctype >        >>>>>>>   Version of (x) HTML
 
< html  >               >>>>>>>    HTML Document
 
< head >                >>>>>>>    Page Infomation

< body >               >>>>>>> Page Content

2.Comments

< !-- Comment Text -- >

3.Page Information

< base   />          >>>>>>>>  Base URL
 
< meta />           >>>>>>>>  Meta data
 
< title  />            >>>>>>>> Title
 
< link / >            >>>>>>>> Relevant Resource
 
< style >             >>>>>>>>   Style Resource

< script >           >>>>>>>>    Script Resource
 

4.Document Structure 

< h[1-6] >         >>>>>>>>>    Heading

< div  >            >>>>>>>>>    Page Section
 
< span >          >>>>>>>>>     Inline Section
 
< p >               >>>>>>>>>      Paragraph
 
< br />             >>>>>>>>>       Line Break
 
< hr />             >>>>>>>>>       Horizontal rule

5.Links

< a href=" " >                  >>>>>>>>>   Page link
 
< a href ="mailto: " >     >>>>>>>>>   Email link

< a name = "name" >     >>>>>>>>>   Anchor
 
< a href = "#name">      >>>>>>>>>   Link to anchor

6.Text Markup

< strong >             >>>>>>>    Strong emphasis

< em >                   >>>>>>>    Emphasis

< blackquote >    >>>>>>>   Long quotation

< q >                      >>>>>>>   Short quotation

< abbr >                >>>>>>>  Abbreviation

< acronym >        >>>>>>>   Acronym

< pre  >                 >>>>>>>  Pre - Formatted text

< dfn >                  >>>>>>>  Defination

< code >                >>>>>>>  Code
 
< cite  >                 >>>>>>>  Citation
 
< del >                   >>>>>>>  Deleted text
 
< ins >                   >>>>>>>  Inserted text

< sub >                  >>>>>>>  Subscript

< sup >                  >>>>>>> SyperScript
 
< bdo >                 >>>>>>>   Text direction
 
< address >          >>>>>>>   Address
 

7. Lists    

< ol >                  >>>>>>>          ordered list

< ul  >                 >>>>>>>        unordered list

< li  >                   >>>>>>>       List item

< dl >                  >>>>>>>        Definition list

< dt >                  >>>>>>>      Definition  term

< dd >                 >>>>>>>      Term description

8. Forms

< form >           >>>>>>>>    Form
 
< fieldset >       >>>>>>>>    Collection of fields
 
< legend >        >>>>>>>>    Form legend
 
< label >           >>>>>>>>    Input label
 
< input / >        >>>>>>>>   Form input
 
< select >         >>>>>>>>    Drop-down box
 
< optgroup >   >>>>>>>>   Group of Options
 
< options >      >>>>>>>>   Drop-down options
 
< textarea >    >>>>>>>>   Large- text  input
 
< button >      >>>>>>>>    Button
 

9.Tables

< table >         >>>>>>>>  Table
 
< caption >    >>>>>>>>  Caption
 
< thead >        >>>>>>>>  Table header
 
< tbody >        >>>>>>>>  Table body
 
< tfoot >          >>>>>>>>  Table foot
 
< colgroup >  >>>>>>>>   Coloumn group

< col / >           >>>>>>>>  Coloumn

< tr >               >>>>>>>>   Table row
 
< th >              >>>>>>>>  Header cell

< td >              >>>>>>>>  Table cell

10. Image and Image Maps

< img />       >>>>>>>>>  Image
 
< map >       >>>>>>>>>  Image map
 
< area />     >>>>>>>>>  Area of Image map

11.Common char. Entities

&#34                        "                        Quotation mark
 
&#38                       &                        Ampersand
 
&#60                       <                         Less than
 
&#62                       >                         Greater than
 
&#64                       @                        'At" symbol
 
&#128                      €                        Euro

&#149                      .                          small bullet

&#153                      ™                       Trademark

&#163                      £                         Pound
 
&#160                   >>>>>>>>             Non-breaking space
 
&#169                     ©                         Copyright symbol

12. Object

< object >            >>>>>>>>       Object

< param />          >>>>>>>>       Parameter

13. Empty Element

< area />            >>>>>>>>    < img />
 
< base />            >>>>>>>>    < input />

< br />                >>>>>>>>    < link />

< col />               >>>>>>>>    < meta />

< hr />                >>>>>>>>    < param />

14. Core Attributes

class                >>>>>>>>>   style
 
id                     >>>>>>>>>   title

15. Language Attribute 

dir               >>>>>>>>>>>          lang

16. Keyboard Attributes

accesskey 

tabindex

17. Window Events

onload
 
onunload
 

18. Form Events 

onblur
 
onreset
 
onchange
 
onfocus
 
onselect
 
onsubmit

19. Keyboard Events

onkeydown 
 
onkeyup
 
onkeypress
 

20. Mouse Events 

onclick
 
ondbclick
 
onmouseout
 
onmousedown
 
onmouseup
 
onmousemove
 
 

#VendanNotes
"Who are we The world say we are hackers"

 

Comments