본문 바로가기
OLD_달려라/Web

HTML ] Introduction

by 달승 2020. 11. 10.

 

HTML is the standard markup language for creating Web pages.

 

What is HTML?

  • HTML stands for Hyper Text Markup Language
  • HTML is the standard markup language for creating Web pages
  • HTML describes the structure of a Web page
  • HTML consists of a series of elements
  • HTML elements tell the browser how to display the content
  • HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
HTML은 HyperText Markup Language의 약자입니다.
웹 페이지는 HTML 문서라고도 불리며, HTML 태그들로 구성됩니다.
각각의 HTML 태그는 웹 페이지의 디자인이나 기능을 결정하는데 사용됩니다.

 

 

 

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>


* The <!DOCTYPE html> declaration defines that this document is an HTML5 document
* The <html> element is the root element of an HTML page
* The <head> element contains meta information about the HTML page
* The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
* The <body> element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
* The <h1> element defines a large heading
* The <p> element defines a paragraph
* Some HTML elements have no content (like the <br> element).


<img> <br> <hr> 등과 같이 종료 태그 없이 시작 태그만을 가지는 태그를 빈 태그(empty tag)라고 합니다.

 

 

 

 

Only the content inside the <body> section (the white area above) will be displayed in a browser.

 

 

 

실습

 

 

마크업 언어(Markup Language)는

문서가 화면에 표시되는 형식을 나타내거나 데이터의 논리적인 구조를 명시하기 위한 규칙들을 정의한 언어의 일종이다.
데이터를 기술한 언어라는 점에서 프로그래밍 언어와는 차이가 있다.

 

 

 

 

Introduction to HTML

HTML Introduction HTML is the standard markup language for creating Web pages. What is HTML? HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of

www.w3schools.com

 

 

 

 

'OLD_달려라 > Web' 카테고리의 다른 글

HTML ] Basic Examples  (0) 2020.11.10
HTML ] Editors  (0) 2020.11.10
JSFiddle  (0) 2020.11.10
FE 입문 ] w3schools  (0) 2020.10.29
[JS] 스크롤 내릴 때 효과 나타내기_(3)React에서 JQuery 사용하기  (0) 2020.07.31

댓글