티스토리 뷰

HTML

HTML 기본 형식 3

carrot62 2020. 7. 23. 09:29
  • <head>
    • <title>: 문서의 이름이다. 페이지의 탭 부분에 나타난다
    • <style>: 하나의 HTML 페이지를 꾸밀 때 사용한다
    • <meta> : HTML 문서에 대한 설명이다, 화면에 나타나지 않는다
      문서 이름, character set, styles, scripts 등의 정보를 나타낸다

      meta 설정들이 더 궁금하다면: 아래에 첨부되어 있는 링크를 참고 할 것
      • viewport: 사용자가 웹 페이지에서 볼 수 있는 면적을 뜻한다 (화면 크기에 따라 다르게 나타난다)
        모든 화면 크기에 잘 나오게 하고 싶다면: <meta name="viewport" content="width=device-width, initial-scale=1.0">
    • <link>: 현재 HTML 문서와 외부의 resource와 어떤 관련이 있는지를 정의한다
    • <script>
    • <base>: specifies the base URL and/or target for all relative URLs in a page

https://www.w3schools.com/html/html_head.asp

 

HTML head Elements

HTML - The Head Element The HTML element is a container for the following elements: , , , , , and . The HTML Element The element is a container for metadata (data about data) and is placed between the tag and the tag. HTML metadata is data about the HTML d

www.w3schools.com

<style>
  body {background-color: powderblue;}
  h1 {color: red;}
  p {color: blue;}
</style>

'HTML' 카테고리의 다른 글

HTML 개념 Review  (0) 2020.07.24
HTML id, iframes, javascript 맛보기, File Paths  (0) 2020.07.23
HTML Block and Inline Elements & class  (0) 2020.07.23
HTML Lists  (0) 2020.07.23
HTML Tables  (0) 2020.07.23