1. HTML Boilerplate
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    </head>
    <body>
    <!--Body content-->                       
    </body>
    </html>
     
  2. Basic Tags👇

  3. Html tag: Creates an HTML document
    <html></html>
  4. Head tag: Sets off the title & other info that isn't displayed
    <head></head>
  5. Body tag: Sets off the visible portion of the document
    <body></body>
  6. Title tag: Puts name of the document in the title bar; when bookmarking pages, this is what is bookmarked
    <title></title>
  7. Body attributes (only used in email newsletters)👇

  8. Body bgcolor: Sets background color, using name or hex value
    <body bgcolor=?>
  9. Body text: Sets text color, using name or hex value
    <body text=?>
  10. Body link: Sets color of links, using name or hex value
    <body link=?>
  11. Body vlink:Sets color of visited links, using name or hex value
    <body vlink=?>
  12. Body alink: Sets color of active links (while mouse-clicking)
    <body alink=?>
  13. Page layout

    Note- It is very important!
  14. Header tag: It used to add navbar content and headings of the page.
    <header></header>
  15. Main tag: It is used as a main content of the webpage
    <main></main>
  16. Footer tag: It used as a bottom content of the webpage
    <footer></footer>
  17. Section tag: It used divide the code in section (used in inside the main tag)
    <section></section>
  18. Article tag: It is used to add some important text
    <article></article>
  19. Aside tag: Content aside from the content(eg-adds etc)
    <aside></aside>
  20. FORMATTING 👇

  21. Paragraph tag : Creates a new Paragraph
    <p>//contains paragraph</p>
  22. Br tag: A Inserts a line break
    <br></br>
    
  23. Blockquote tag: Puts content in a quote - indents text from both sides
    <blockquote></blockquote>
  24. Div tag: Used to format block content with CSS
    <div></div>
  25. Span tag: Used to format inline content with CSS
    <span></span>
  26. LISTS 👇

  27. Ul tag: Creates an unordered list
    <ul></ul>
  28. Ol tag: Creates an ordered list (start=xx, where xx is a counting number)
    <ol start=?></ol>
  29. Li tag: Encompasses each list item
    <li></li>
  30. Dl tag: Creates a definition list
    <dl></dl>
  31. Dt tag: Precedes eachdefintion term
    <dt></dt>
  32. Dd tag: Precedes eachdefintion
    <dd></dd>
  33. Text Tags👇

  34. Pre tag: Creates preformatted text
    <pre></pre>
  35. Heading tags: Creates headlines -- H1=largest, H6=smallest
    <h1></h1>
    <h2></h2>
    <h3></h3>
    <h4></h4>
    <h5></h5>
    <h6></h6>
  36. Bold tag: Creates bold text (should use <strong> instead)
    <b></b>
  37. Underline tag: Creates underline on text
    <u></u>
  38. Italic tag: Creates italicized text (should use <em> instead)
    <i></i>
  39. Tt tag: Creates typewriter-style text
    <tt></tt>
  40. code tag: Used to define source code, usually monospace
    <code></code>
  41. Cite tag: Creates a citation, usually processed in italics
    <cite></cite>
  42. Address tag: Creates address section, usually processed in italics
    <address></address>
  43. Em tag: Emphasizes a word (usually processed in italics)
    <em></em>
  44. Strong tag: Emphasizes a word (usually processed in bold)
    <strong></strong>
  45. Font size tag: Sets size of font - 1 to 7 (should use CSS instead)
    <font size=?> </font> 
    
  46. Font color tag: Sets font color (should use CSS instead)
    <font color=?> </font>
    
  47. Font face tag: Defines the font used (should use CSS instead)
    <font face=?> </font>
  48. Graphical elements👇

  49. Hr tag: Inserts a horizontal rule
    <hr>
  50. Hr size tag: Sets size (height) of horizontal rule
    <hr size=?>
  51. Hr width tag: Sets width of rule (as a % or absolute pixel length)
    <hr width=?>
  52. Hr noshade tag: Creates a horizontal rule without a shadow
    <hr noshade>
  53. Image tag: Adds image; it is a separate file located at the URL
    <img src="<!--url of the image-->"/>
  54. Image tag with align attribute: Aligns image left/right/center/bottom/top/middle (use CSS)
    <img src="<!-- Url of the image-->" align=?>
  55. Image tag with border attribute: Sets size of border surrounding image (use CSS)
    <img src="<!--url of the image" border=?>
  56. Image tag with height attribute: Sets height of image, in pixels
    <img src="<!--url of the image-->" height=?>
    
  57. Image tag with width attribute: Sets width of image, in pixels
    <img src="<!-- url of the image-->" width=?>
  58. Image tag with alt attribute: Sets the alternate text for browsers that can't process images (required by the ADA)
    <img src="<!--url of the image-->" alt=?>
  59. Button tag: It help to create clickable button in HTML
    <button type="button"> </button>
  60. LINKS👇

  61. Anchor tag: Creates a hyperlink to a Uniform Resource Locator
    <a href="URL">clickable text</a>
  62. Email anchor tag: Creates a hyperlink to an email address
    <a href="mailto:EMAIL_ADDRESS">clickable text</a>
  63. Anchor tag with name attribute: Creates a target location within a document
    <a name="NAME">
  64. Anchor tag with href attribute: Creates a link to that target location
    <a href="#NAME">clickable text</a>
  65. Forms👇

  66. Form tag: Defines a form
    <form></form>
  67. Select tag with multiple name attribute: Creates a scrolling menu. Size sets the number of menu items visible before user needs to scroll.
    <select multiple name=? size=?> </select>
  68. Select tag with name attribute: Creates a pulldown menu
    <select name=?></select>
  69. Option tag: Sets off each menu item
    <option>
  70. Textarea tag: Creates a text box area. Columns set the width; rows set the height.
    <textarea name=? cols="x" rows="y"></textarea>
    
  71. Input checkbox tag: Creates a checkbox.
    <input type="checkbox" name=? value=?>
  72. Input checkbox(checked) tag: Creates a checkbox which is pre-checked.
    <input type="checkbox" name=? value=? checked>
  73. Input radio tag: Creates a radio button.
    <input type="radio" name=? value=?>
    
  74. Input radio tag(checked): Creates a radio button which is pre-checked.
    <input type="radio" name=? value=? checked>
    
  75. Input image tag: Creates a one-line text area. Size sets length, in characters.
    <input type="text" name=? size=?>
    
  76. Input submit tag: Creates a submit button. Value sets the text in the submit button.
    <input type="submit" value=?>
    
  77. Input image tag: Creates a submit button using an image.
    <input type="image" name=? src=? border=? alt=?>
  78. Input reset tag: Creates a reset button
    <input type="reset">
    
  79. Tables (use only for data layout - use CSS for page layout) 👇

  80. Table tag: Creates a table
    <table></table> 
  81. Table row tag: Sets off each row in a table
    <tr></tr>
  82. Table data tag: Sets off each cell in a row
    <td></td>
  83. Table heading
    <th></th>
  84. HTML5 input tag attributes 👇

    Notes- not all this browsers support; visit http://caniuse.com for details
  85. Input email tag: Sets a single-line textbox for email addresses
    <input type="email" name=?> 
    
  86. Input url tag: Sets a single-line textbox for URLs
    <input type="url" name=?>
  87. Input number tag: Sets a single-line textbox for URLs
    <input type="number" name=?>
  88. Input range tag: Sets a single-line text box for a range of numbers
    <input type="range" name=?>
  89. Input date/month/week/time tag: Sets a single-line text box with a calendar showing the date/month/week/time
    <input type="date/month/week/time" name=?>
    
  90. Input search tag: Sets a single-line text box for searching
    <input type="search" name=?>
  91. Input color: Sets a single-line text box for picking a color
    <input type="color" name=?> 
    
  92. Table attributes (only use for email newsletters)

  93. Table border tag: Sets the width of the border around table cells
    <table border=?>
                
  94. Table cellspacing tag: Sets amount of space between table cells
    <table cellspacing=?>
  95. Table cellpadding tag: Sets amount of space between a cell's border and its contents
    <table cellpadding=?>
  96. Table width tag: Sets width of the table in pixels or as a percentage
    <table width=?>
    
  97. Table row align tag: Sets alignment for cells within the row (left/center/right)
    <tr align=?>
  98. Table data align tag: Sets alignment for cells (left/center/right)
    <td align=?>
  99. Table row valign tag: Sets vertical alignment for cells within the row (top/middle/bottom)
    <tr valign=?>
  100. Table data valign tag: Sets vertical alignment for cell (top/middle/bottom)
    <td valign=?>
  101. Table data rowspan: Sets number of rows a cell should span (default=1)
    <td rowspan=?>
  102. Table data colspan: Sets number of columns a cell should span
    <td colspan=?>
  103. Table data nowrap: Prevents lines within a cell from being broken to fit
    <td nowrap>
    
Besucherzähler Fehler: Code nicht ändern. Hier klicken, um den neue Code zu generieren!