HTML5 소개
2587 단어 htmlprogrammingtutorialwebdev
This is a continuation of the intro to web dev series,
Html은 Hyper Text Markup Language를 의미하며 페이지의 구조를 디자인하고 사용자 입력을 수집하는 데 사용됩니다.
html은 태그를 다룹니다.
<!DOCTYPE html>
이것은 html5 선언에 사용되는 간단한 html 태그입니다. html에는 여러 버전이 있으므로 선언이 필요합니다.
간단한 html5 구조의 예:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> </head> <body> <h1>hi there </body> </html>
이 시리즈의 대부분의 태그를 살펴보겠습니다.
우리가 볼 첫 번째 태그는 다음과 같습니다.
<!DOCTYPE html>
위에서 설명한 것처럼 html5 선언에 사용됩니다.
다음 태그는 다음과 같습니다.
<html> </html>
<html lang="en">
다음 태그는 다음과 같습니다.
<head> </head>
<head> <meta charset="utf-8" /> <meta name="author" content="faith james" /> <script src="./index.js" /> <link type="text/css" rel="stylesheet" href="./main.css" /> </head>
다음 태그는 다음과 같습니다.
<body> </body>
<body> <h1>This is the first Heading </h1> <p> this is a paragraph </p> <img src="./sample.jpg" alt="this is a simple image" /> </body>
we will discuss about more about tags in the next article in this series
Cover Photo by Vishnu R Nair on Unsplash
Photo by James Harrison on Unsplash
Reference
이 문제에 관하여(HTML5 소개), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/blackpandan/intro-to-html5-555n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)