(Overview 01) HTML이란 무엇인가?
in HTML
SoloLearn HTML 번역
What is HTML?
HTML이란 무엇인가?
Welcome to HTML
- HTML stands for
H
yperT
extM
arkupL
anguage.- HTML은
H
yperT
extM
arkupL
anguage의 약자이다.
- HTML은
- Unlike a scripting or programming language that uses scripts to perform functions, a markup language uses tags to identify content.
- 스크립트를 사용해서 기능을 수행하는 스크립팅 또는 프로그래밍 언어와는 다르다.
- 마크업 언어는 태그를 사용해서 내용을 식별한다.
- Here is an example of an HTML tag:
- 다음은 HTML 태그의 예제이다.
<p>I'm a paragraph</p>
The Web Structure
웹 구조
- The ability to code using HTML is essential for any web professional.
- HTML을 사용해서 코드를 작성하는 역량은 모든 웹 전문가에게 필수적이다.
- Acquiring this skill should be the starting point for anyone who is learning how to create content for the web.
- 이 기술을 습득하는 것은, 어떻게 웹 컨텐츠를 생성하는지를 배우는 모든 사람들을 위한 출발점이 되어야 한다.
Modern Web Design
최신 웹 디자인
HTML
: Structure (구조)
CSS
: Presentation (설명하거나 보여주는 방식)
JavaScript
: Behavior (작동 방식)
PHP
: Backend (백엔드)
CMS
: Content Management (컨텐츠 관리)
QUIZ
- What does a markup language use to identify content?
- 마크업 언어는 컨텐츠를 식별하는 데 무엇을 사용하는가?
tags
- Rearrange the code to surround the text “I am learning HTML on SoloLearn!” with opening and closing <p> tags:
- 여는 <p> 태그와 닫는 </p> 태그로 “I am learning HTML on SoloLearn!” 텍스트를 감싸라.
<p>
I am learning HTML on SoloLearn!
</p>