HTML Tag Review 본문

Programming/웹 개발

HTML Tag Review

쩡호 2018. 1. 11. 10:37

Let’s review what you’ve learned in this lesson:

  1. Headings and sub-headings, <h1> to <h6> tags, are used to enlarge text.
  2. <p><span> and <div> tags specify text or blocks.
  3. The <em> and <strong> tags are used to emphasize text.
  4. Line breaks are created with the <br> tag.
  5. Ordered lists (<ol>) are numbered and unordered lists (<ul>) are bulleted.
  6. Images (<img>) and videos (<video>) can be added by linking to an existing source.
  7. Anchor tags (<a>) are used to link to internal pages, external pages or content on the same page.
  8. You can create sections on a webpage and jump to them using <a> tags and addings ids to the elements you wish to jump to.
  9. The nav element contains links to internal pages or content.



from Codecademy

'Programming > 웹 개발' 카테고리의 다른 글

서브라임 단축키 (필요한 것만 계속 추가)  (0) 2018.01.12
CSS Visual Rules  (0) 2018.01.12
CSS Selectors Review  (0) 2018.01.12
CSS Layout Review  (0) 2018.01.12
HTML TABLE REVIEW  (0) 2018.01.11
Comments