Advertisement
Guest User

Default

a guest
Jan 22nd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <head>
  5. <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
  6. <title>HTML Tutorials</title>
  7. </head>
  8.  
  9. <body>
  10.  
  11. <!-- HTML Comments
  12. h1 - heading one
  13. h2 - heading two
  14. ul - unordered list
  15. ol - ordered list
  16. li - list item
  17. a - anchor
  18. href -hypertext reference
  19. -->
  20.  
  21. <h1>HTML Tutorials</h1>
  22.  
  23. <h2>Getting Started</h2>
  24.  
  25. <ul>
  26. <li>HTML - HyperText Markup Language, it is a language used to create Web pages.</li>
  27. <li>Web page - It is a plain text document created using HTML. The common file
  28. extensions for a Web page is either *.htm or *.html.</li>
  29. <li>Website - a collection of Web pages that linked to each others and grouped in
  30. one location or folder (directory).</li>
  31. <li>Homepage - the first or the main page of a website, usually it is named as
  32. index.html or default.html</li>
  33. <li>Enable show filename and extension. Open [Window Explorer], click [View]tab,
  34. check [File Name Extensions].</li>
  35. <li>Download
  36. <a href="https://www.microsoft.com/en-my/download/details.aspx?id=36179"
  37. target="_blank"> MS Expression Web 4</a></li>
  38. </ul>
  39.  
  40. <h2>Creating Web Pages</h2>
  41.  
  42. Many ways:
  43. <ol>
  44. <li>Using a text editor and a browser.</li>
  45. <li>Using a translator. Example: MS Word</li>
  46. <li>Using a Web authoring tools. Examples: MS Expression Web, Adobe
  47. Dreamweaver, MS Visual Studio and etc.</li>
  48. </ol>
  49.  
  50. <h2>HTML Versions and Document Declarations</h2>
  51.  
  52. <ul>
  53. <li>There are 3 commonly used HTML versions, that are: HTML 4.01,
  54. XHTML 1.0 and HTML 5.</li>
  55. <li>In MS Expression Web, you can select the default document
  56. type declaration using following steps:
  57. <ol>
  58. <li>Click the [Tools] menu.</li>
  59. <li>Select [Page Editor Options].</li>
  60. <li>Click on the [Authoring] tab.</li>
  61. <li>Choose the schema from the [Document Type Declaration].</li>
  62. </ol>
  63. </li>
  64. <li>Here are examples:
  65. <a href="html41.html" target="_blank">HTML 4.01 Document (1999) </a> |
  66. <a href="xhtml1.html" target="_blank">XHTML 1.0 Document (2000)</a> |
  67. <a href="html5.html" target="_blank">HTML 5 Document (2014)</a>
  68. </li>
  69. </ul>
  70.  
  71. <h2>References</h2>
  72.  
  73. <ul>
  74. <li><a href="http://www.w3schools.com" target="_blank">
  75. W3 Schools</a></li>
  76. <li><a href="http://www.w3schools.com/html/default.asp" target="_blank">
  77. Learn HTML</a></li>
  78. <li><a href="http://www.w3schools.com/html/html_xhtml.asp" target="_blank">
  79. HTML vs XHTML</a></li>
  80. <li><a href="http://www.w3schools.com/html/html5_syntax.asp" target="_blank">
  81. HTML5 Style Guide and Coding Conventions</a></li>
  82. <li><a href="http://validator.w3.org" target="_blank">
  83. Markup Validation Service</a></li>
  84. <li><a href="http://www.ncdesign.org" target="_blank">
  85. HTML and CSS Guide</a></li>
  86. </ul>
  87.  
  88. </body>
  89.  
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement