Quick actions

cmd+k|ctrl+k

Navigation

Languages

20191019

Snippet info

Language

Python

Visibility

public

Author

th.kim8114

Created

2019-10-19T03:50:35Z

Updated

2019-10-19T03:50:35Z


print("HTML is the standard markup language for creating webpages.")

print("HTML stands for hyper text markup language")
print("HTML describes the structure of a web page")
print("HTML consists of a series of elements")
print("HTML elements tell the browser how to display the content")
print("HTML elements are represented by tags")
print("HTML tags label pieces of content such as heading, paragraph, table, and so on ")
print("Browsers do not display the HTML tags, but use them to reader the content of the page")

print("HTML은 웹 페이지의 표준 언어다")
print("HTML 웹 페이지의 구조를 묘사한다")
print("HTML은 일련의 요소들로 구성돠어 있다")
print("HTML의 요소들은 태그들을 대표한다")
print("HTML은heading, paragraph, table과 같은 내용이 있다")
print("브라우저는 HTML의 태그를 표시하지 않지만, 페이지의 내용을 만들기 위해 사용한다.") 
INFO