모든 웹사이트에서 HTML이 중요한 이유
따라서 단순한 프레젠테이션 외에도 이러한 태그는 요소에 추가적인 의미를 제공합니다. 브라우저는 동일한 것을 사용하여 요소를 클라이언트에 올바르게 렌더링합니다. 좋은 예는 제목을 나타내는
<h1>
태그입니다. 사용자는 제목이 무엇인지 알고 있으며 브라우저는 올바른 의미로 제목을 적절하게 표시할 수 있습니다( <h1>
). 다른 몇 가지는 <blockquote>
, <code>
및 <em>
입니다.반대로
<b>
및 <i>
와 같은 태그는 텍스트의 모양에만 관심이 있으므로 의미가 없습니다. 시맨틱 HTML의 중요성은 모든 웹 페이지- 커뮤니케이션의 목표입니다. 시맨틱 태그는 페이지와 해당 콘텐츠의 의미를 브라우저에 명확하게 보여줍니다. 이는 필요할 때 올바른 콘텐츠를 제공하기 위해 검색 엔진에 동시에 전달됩니다. 다음은 HTML의 기본 웹 레이아웃입니다.<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Website</title>
</head>
<body>
<header>
<h1>My First Webpage</h1>
</header>
<main>
<p>I welcome you all to this page</p>
<p>Kindly fill out this form to subscribe to my weekly newsletter</p>
<form action="#">
<label for="username">Enter your fullname here:</label>
<input type="username" id="username" name="newsletter">
<label for="email">Please provide a valid email address:</label>
<input type="email" id="email" name="newsletter">
<button>Submit</button>
</form>
</main>
</body>
</html>
아래 이미지는 HTML 태그 목록을 보여줍니다. 목록이 완전하지는 않지만 웹 개발 초보자에게 유용합니다.
표지 이미지: 1training.org
Reference
이 문제에 관하여(모든 웹사이트에서 HTML이 중요한 이유), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/taofeekajibade/why-html-is-important-for-every-website-2mha텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)