• Home
  • About
    • Miles' Blog photo

      Miles' Blog

      Miles 用來記錄學習心得及筆記的地方。

    • Learn More
    • Email
    • Github
  • Posts
    • All Posts
    • All Tags
  • Projects

HTML - Introduction To HTML

05 Mar 2018

Reading time ~1 minute

Reference : Codecademy - Learn HTML - Introduction To HTML

  • Any visible content should be placed within the opening and closing <body> tags .
  • Headings and sub-headings, <h1> to <h6> tags, are used to enlarge text.
  • <p>, <span> and <div> tags specify text or blocks.
  • The <em> and <strong> tags are used to emphasize text.
  • Line breaks are created with the <br> tag.
  • Ordered lists (<ol>) are numbered and unordered lists (<ul>) are bulleted.
  • Images (<img>) and videos (<video>) can be added by linking to an existing source.
    • <video src = "https://xxxxxx" width = "320" height = "240" controls>


I.T.HTML Share Tweet +1