HTML은 웹페이지 개발에 사용되는 태그 기반 언어입니다. HTML은 Hyper Text Markup Language의 약자입니다. 하이퍼텍스트는 웹 페이지가 서로 연결되는 방식을 나타냅니다. 따라서 웹페이지에서 사용할 수 있는 링크를 하이퍼텍스트라고 합니다. 태그는 페이지가 렌더링되는 방식을 브라우저에 알려주는 마크업 언어입니다. Berners-Lee는 1991년 말에 이를 개발했지만 'HTML2.0'은 1995년에 발표된 최초의 표준 사양이었습니다. 나중에 HTML 4.0과 같은 많은 HTML 버전이 출시되었습니다. 현재 최신 버전은 프론트엔드 웹사이트 개발 분야에서 매우 유명한 HTML5.0입니다.
HTML 페이지가 어떻게 작동하는지 구조를 살펴보겠습니다.
<!DOCTYPE html> <html> <head> <title>title tag of html</title> </head> <body> <h1>heading tag of html</h1> <p>paragraph tag of html<p> </body> </html>
이 태그는 문서 유형과 HTML 버전을 정의합니다.
위의 태그는
…로 표시되는 문서 헤더로 구성된 완전한 HTML 프로그래밍 언어 문서를 포함합니다. …로 표시되는 문서 본문입니다. 태그.head 태그는
이 태그는
태그를 사용하여 문서 제목을 작성하세요.<본문> 태그는
와 같은 다른 HTML 태그를 유지하는 문서의 본문을 나타냅니다. 등등
HTML 작동 방식에 대한 다양한 태그는 아래에 설명되어 있습니다.
제목 태그는 아래 제시된 제목 예의 다양한 생성에 사용됩니다
<!DOCTYPE html> <html> <head> <title>Heading Example</title> </head> <body> <h1>Heading 1</h1> <h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6> </body> </html>
출력
제목 1
제목 2
제목 3
제목 4
제목 5
제목 6
아래 예시를 통해 이해하기 쉬운 단락 태그입니다.
<!DOCTYPE html> <html> <head> <title>Paragraph Example</title> </head> <body> <p>This is a first paragraph of text.</p> <p>This is a second paragraph of text.</p> <p>This is a third paragraph of text.</p> </body> </html>
출력
본문의 첫 문단입니다.
본문의 두 번째 문단입니다.
본문의 세 번째 문단입니다.
이 태그는 줄바꿈에 사용됩니다. 우리는 무엇이든 다음 줄부터 시작하기를 원할 때마다 이 태그를 사용할 수 있습니다. 닫는 태그가 필요 없는 한줄 태그입니다.
웹페이지 생성 시 이 태그의 주요 용도를 중심으로 전체 콘텐츠를 배치하세요.
선을 만드는 데 사용되며 주로 단선 웹페이지를 그리고 싶을 때 사용됩니다.
이것은 HTML의 매우 중요한 태그입니다. 어떤 시나리오에서는 HTML 페이지에 작성된 것과 동일하게 모든 것을 표시하고 싶습니다. 그러한 경우에는 매우 유용한 태그입니다. 그 예는 아래와 같습니다.
<!DOCTYPE html> <html> <head> <title>Preserve Formatting Example</title> </head> <body> <pre class="brush:php;toolbar:false"> Laravel is the PHP framework. It is an open source framework used in web application development. This framework is based on model view controller design pattern due to this project developed with help of this framework are more structured and manageable. This framework reuses the existing
출력
Laravel은 PHP 프레임워크입니다. 웹에서 사용되는 오픈소스 프레임워크입니다
애플리케이션 개발. 이 프레임워크는 모델 뷰 컨트롤러를 기반으로 합니다
이 프레임워크의 도움으로 개발된 이 프로젝트로 인한 디자인 패턴은
더 구조화되고 관리하기 쉽습니다. 이 프레임워크는 기존
단일 공백을 인쇄하려면 HTML에서 사용됩니다.
태그 수준에서 속성을 설정할 수 있습니다. 아래 예시
<!DOCTYPE html> <html> <head> <title>Align Attribute</title> </head> <body> <p align = "left">Left aligned</p> <p align = "center">Center aligned</p> <p align = "right">Right aligned</p> </body> </html>
출력
왼쪽 정렬
가운데 정렬
오른쪽 정렬
다음에는 거의 모든 HTML 요소에 사용되는 몇 가지 핵심 속성이 있습니다.
이 속성은 페이지의 HTML 요소를 고유하게 식별하는 데 사용됩니다. 요소와 해당 내용을 식별하고 javascript에서 다른 목적으로 사용될 수 있는 id 속성에 의해 동일한 요소가 HTML 페이지의 여러 위치에서 사용되었을 수 있습니다. 그 예는 아래와 같습니다.
<p id = "html">HTML이 무엇인지, 사용 방법을 설명하는 첫 번째 단락입니다</p><code><p id = "html">This is first paragraph which explains what is HTML how to use it</p><br>
<p id = "css">This it second para which explains what is Cascading Style Sheet and how to use it</p>
이것은 계단식 스타일 시트(Cascading Style Sheet)가 무엇이고 어떻게 사용하는지 설명하는 두 번째 단락입니다.
설명 – 위의 예에서는 ID로만 이 요소를 구별하기 위해 동일한 요소를 두 번 사용했습니다.
이 속성 구문은 id 속성과 유사하며, 이 속성의 목적은 이를 전달하는 요소에 따라 달라집니다. 커서가 요소 위에 올 때 도구 설명으로 표시되는 경우가 많지만 이것이 이 속성의 주요 용도입니다. 그 예는 아래와 같습니다 –
<!DOCTYPE html> <html> <head> <title> title Attribute Example</title> </head> <body> <h3 title = "Hello Title Example Test">Sleeping from the long time</h3> </body> </html>
출력
오랜잠
If we try to bring our cursor over “Sleeping from a long time”, we will see that whatever title we have used in our code is coming out as a tooltip of the cursor.
The class attribute is used to associate an element with a style sheet and specifies the class of element. We will learn more about the use of the class attribute when we will learn Cascading Style Sheet (CSS).Its main use is CSS. Value for this attribute may also be a space-separated list of class names. The example is given below –
class = "className11 className12 className53"
It is used to writing the cascading style rule at the element level, which can be better explained by the example given below.
<!DOCTYPE html> <html> <head> <title>The style Attribute</title> </head> <body> <p style = "font-family:arial; color:#FF0000;">This is style example text , it is red color...</p> </body> </html>
Output
This is a style example text; it is red color…
As we saw many basics tags, the web page can be created with the help of these tags, which can be displayed to the end-user whenever a user requests the particular web page through his web browser, the work of displaying will be done by the web browser. Today lots of new tags exist into the market to make web pages more attractive.
위 내용은 HTML은 어떻게 작동하나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!