모든 웹사이트에 HTML이 필요한 이유
HTML은 프로그래밍 언어가 아닙니다.
웹사이트에 무엇이 있어야 하는지 브라우저와 통신하는 방법일 뿐입니다.
같은 요소의 도움으로
<head>,<title>,<main>, <header>, <p>, <footer>, <ul>, <body>
등을 통해 웹 페이지의 형식을 지정하고 구성할 수 있습니다.HTML은 텍스트, 이미지, 버튼, 텍스트 필드, 비디오, 오디오 등을 추가할 수 있는 인터페이스를 만듭니다. 이제 HTML이 모든 웹사이트에 필요한 이유를 알 수 있습니다.
HTML 의미 체계는 웹 페이지에 의미를 부여하는 데 도움이 됩니다. 접근성 때문에 시맨틱 요소를 사용할 때 사용자는 웹 사이트에서 더 나은 경험을 할 수 있습니다. 시맨틱에 대한 추가 정보 [( https://developer.mozilla.org/en-US/docs/Glossary/Semantics) ]
HTML은 웹사이트의 구성 요소라고도 할 수 있습니다. 또는 웹사이트의 기초. 기초가 없으면 집을 지을 수 없습니다. HTML이 없으면 구조화된 웹사이트를 가질 수 없습니다.
HTML을 사용하는 웹사이트의 예로는 google.com, geeksforgeeks.com, Waiting.zuriboard.com, freecodecamp.com 등이 있습니다.
다음과 같은 15개의 HTML 빈 태그가 있습니다.
<p> - It gives paragraph to a text
<br/> - Line break, it creates a new line whenever it's used.
<img/> - Insert an image into a webpage
<area> - It is used to map a portion of an image to make it clickable by the end-user. It is used to direct the user to different links after the user clicks on the mapped portions of the image. It is used as a child tag of the <map> tag.
<base> - For all relative URLs in a document, the base URL is specified to use with the <base> element. Only one <base> element can be used in a document.
<col> -
The <col> tag in HTML is used to set the column properties for each column within a <colgroup> tag. This tag is used to set the style property to each column.
<embed> - The <embed> tag in HTML is used for embedding external applications which are generally multimedia content like audio or video into an HTML document. It is used as a container for embedding plug-ins such as flash animations.
<hr> - A thematic break between paragraph-level components is represented by the <hr> element. It looks like a line
<input> - This empty element is used to create interactive controls for web-based applications and forms, for accepting the information from the user such as an address, name, phone number, etc, depending on a variety of types of input data and control widgets are available.
<link> - The HTML element <link> is used to establish a connection between the current content and an external resource.
<meta> - The <meta> HTML element represents metadata i.e., information of a information.
<param> - The <param> tag in HTML is used to define a parameter for plug-ins which is associated with <object> element.
<source> - The <source> element is an empty element that provides various media resources for the <image>, <audio>, or <video> elements. It provides the same media material in several file formats to ensure compatibility with a wide variety of browsers, as image and media file formats are supported by the browsers differently.
<wbr> - The <wbr> tag in HTML stands for word break opportunity and is used to define the position within the text which is treated as a line break by the browser. It is mostly used when the used word is too long and there are chances that the browser may break lines at the wrong place for fitting the text.
<track> -
The <track> tag specifies text tracks for media components audio and video. This part is employed to specify subtitles, caption files, or different files containing text, that ought to be visible once the media is taking part in. The <track> element is an empty HTML element that is used as a child of the audio and video media components. It allows you to define timed text tracks (or time-based data), for example, to handle subtitles automatically.
<keygen> - It is used to specify a key-pair generator in a HTML form. A private and public key will be generated. The private will be saved in the browser local key storage while a public key will be sent to the server.
Note: The tag is no more recommended.
아래는 25개의 컨테이너 태그입니다.
<h1> to <h6></h1>to</h6> - This is meant for headings. H1 is the main heading, H2 is secondary, etc.
<p></p> - It create a new paragraph
<div></div> - A container for a block of content
<span></span> - A container for inline content, such as content inside a paragraph
<em></em> - Gives the contained text emphasis (usually as italics).
<strong></strong> - It gives a bold text
<title></title> - It gives a document a title.
<head></head> - It contains important information about the document which are machine-readable.
<a></a> - This create a link that can connect to a another webpage
<section></section> - defines the section of documents such as chapters, headers, footers or any other sections.
<ul></ul> - creates an unordered list
<ol></ol> - creates an ordered list
<li></li> - creates bullet list
<footer></footer> - This is a semantic tag that defines the footer of a document.
<aside></aside> - the tag defines some content aside from the content it is placed in.
<code></code> - The <code> tag is used to define a piece of computer code.
<textarea></textarea> - it allows multi-line text input. It commonly used in a form.
<th></th> - The <th> tag defines a header cell in an HTML table.
<progress></progress> - The <progress> tag represents the completion progress of a task.
<blockquote></blockquote> - The <blockquote> tag specifies a section that is quoted from another source.
<button></button> - The <button> tag defines a clickable button. It is commonly used after filling a form in a website.
<legend></legend> - The <legend> tag defines a caption for the <fieldset> element.
<main></main> - The <main> tag defines the main content of a document.
<option></option> - The <option> tag defines an option in a select list.
<script></script> - The <script> tag is used to embed a client-side script (JavaScript).
<svg></svg> - The <svg> tag defines a container for SVG graphics.
SVG has several methods for drawing paths, boxes, circles, text, and graphic images.
자원
https://calltutors.com/blog/importance-of-html
https://developer.mozilla.org
https://matthewjamestaylor.com/empty-tags
https://www.washington.edu/accesscomputing/webd2/student/unit2/common_tags.html
https://www.geeksforgeeks.org/what-are-empty-elements-in-html/
www.w3schools.com
Reference
이 문제에 관하여(모든 웹사이트에 HTML이 필요한 이유), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/blaycoder/why-html-is-a-must-for-every-website-3gic텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)