HTML의 기초

박다솔·2021년 9월 8일
0

WebDevBootcamp

목록 보기
1/3

Udemy의 Web Developer Bootcamp 강의를 듣고 HTML부분을 정리했다.
HTML의 가장 기초적인 태그들에 대해서 배웠다.

이 뭔지 잘 모른 채로 사용해왔는데 HTML5를 사용한다는 flag역할을 한다는 점을 새롭게 알게되었다.

HTML : The Essentials

HTML is a markup language.

  • Paragraph Elements

    • <p>
  • Heading Elements

    • <h#>
    • h1,h2,h3,h4,h5,h6
    • We should always only have one h1 at most on a page, it should always be the top level of main heading
  • HTML Boilerplate

    • <!DOCTYPE html>
      • a flag to the browser that indicates we're using HTML5
      • put at the very beginning
      • no closing tag
    • <html>
      • root element
      • one <head> followed by one <body>
    • <head>
      • includes <title>, <meta>
    • <body>
  • List Elements

    • Ordered List
      • <ol>
    • Unordered List
      • <ul>
  • Anchor Tags

    • <a>
    • href= : relative path of the file , URL to link to
  • Images

    • <img>
    • no closing tag
    • src=
      • location of an image
      • URL
  • Comments

    • <!-- content -->
profile
매일 성장하는 개발자

0개의 댓글