반응형

I HTML 개념 

 

https://en.wikipedia.org/wiki/HTML

 

Hypertext Markup Language (HTML)

  • standard markup language for documents designed to be displayed in web browser

  It can be assisted by Cascading Style Sheets (CSS) and scripting languages such as JavaScript

 

Markup Language

  • system for annotating a document in a way that is syntactically distinguishable from the text

 

 

HTML

  • 브라우저에서 실행가능한 가장 기본적인 파일

  • Markup language로 태그(tag) 구조로 구성

 

 

 

I HTML 기본구조

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Javascript Tutorial</title>
    <script src="hello.js">
 
    </script>
</head>
 
<body>
    <!-- inline v. block -->
    <a href="https://tlo-developer.tistory.com" target=_blank>Hyper Reference</a>
    <p>p tag stands for <b>Paragraph</b>. &lt;b&gt; tag is inline. </p>
    <p>p tag stands for <span>Paragraph</span>. &lt;span&gt; tag is inline. </p>
    <p>p tag stands for
    <div>Paragraph</div>. &lt;div&gt; tag is block. </p>
</body>
 
</html>
cs

 

 

HTML의 상위 태그 <head>, <body>

  • head: 브라우저 관련 상세 설명, 설정

  • body: 브라우저 표시 부분

 

 

HTML Inline v. Block

  • Inline: 같은 줄

  • Block: 다른 블록으로 줄바꿈

 

 

반응형