JavaScript 프레임워크와 라이브러리에 대한 의존도가 높아짐에 따라 많은 사람들이 HTML에 덜 관심을 기울이고 있습니다. 이로 인해 웹사이트 기능을 크게 향상시킬 수 있는 HTML의 많은 기능을 최대한 활용할 수 없게 되었습니다. 또한 의미론적 HTML을 작성하면 웹 사이트 콘텐츠에 올바른 컨텍스트를 추가하여 사용자 경험을 크게 향상시킬 수 있습니다.
<!DOCTYPE html>
<html>
<head>
<base href="https://www.google.com/" target="_blank">
</head>
<body>
<h1>The base element(Google As a case study)</h1>
<p> <a href="gmail">Gmail</a> - Used to send emails; which are messages distributed by electronic means from one computer user to one or more recipients via a network.</p>
<p><a href="hangouts">Hangouts</a> - It's used for Messaging, Voice and Video Calls</p>
</body>
</html>
这样就不必为每个请求重复 URL 的前缀了。
一个 HTML 文档中只能有一个 <code><base> 元素,并且它必须位于 <code> 元素内。
<code>x1, y1, x2, y2, .….<code><base> 태그를 사용하면 문서 접두어. 태그에는 기본 URL을 포함하는 <code>href 또는 <code>target 속성(또는 둘 다)이 있어야 합니다.
<p><dfn title="HyperText Markup Language">HTML</dfn>
Is the standard markup language for creating web pages.
</p>
이렇게 하면 모든 요청에 대해 URL 접두어를 반복할 필요가 없습니다.
HTML 문서에는 <code><base> 요소가 하나만 있을 수 있으며 <code> 요소 내에 위치해야 합니다.
이미지 맵
이미지 맵은 클릭 가능한 특정 영역이 있는 이미지이며 <code>map 태그를 통해 정의됩니다. 이러한 영역은 <code><area> 태그를 사용하여 설정됩니다. 이를 통해 이미지의 다른 부분에 링크를 삽입할 수 있으며, 이를 통해 다른 페이지로 연결될 수 있으며, 이는 이미지 내용을 설명하는 데 유용합니다.
예를 보세요:
첫 번째 단계는 평소처럼 <code><img alt="무시할 수 있는 유용한 HTML 태그(요약)" > 태그를 사용하여 이미지를 삽입하는 것이지만 이번에는 <code>usemap 속성을 사용합니다. 🎜
<!DOCTYPE html>
<html>
<body>
<p><dfn><abbr title="HyperText Markup Language">HTML</abbr></dfn>
It's the standard markup language for creating web pages.</p>
</body>
</html>
🎜 <code><area> 요소를 사용하여 이미지에서 클릭 가능한 영역을 정의하세요. <code>map 요소 내에 추가됩니다. 🎜🎜이러한 속성은 다음과 같습니다. 🎜
<code>모양은 해당 영역 위에 직사각형을 그릴 때 필요합니다. 직사각형, 원, 다각형 또는 기본 모양(전체 이미지)과 같은 다른 모양을 사용할 수 있습니다.
<code>alt는 <code>영역 요소는 어떤 이유로 페이지를 렌더링할 수 없는 경우 표시되는 대체 텍스트입니다.
<code>href 클릭 가능한 영역을 다른 페이지로 연결하는 URL이 포함되어 있습니다.
coords 픽셀 단위의 좌표를 이용하여 모양을 정확하게 잘라냅니다. 다양한 소프트웨어를 사용하여 이미지의 정확한 좌표를 얻을 수 있습니다. 아래에는 간단한 예로 Microsoft의 그리기 소프트웨어가 사용되었습니다. 다양한 모양은 다양한 방식으로 좌표를 나타냅니다. 예를 들어 직사각형은 <code>왼쪽, 위쪽, 오른쪽, 아래쪽으로 표시됩니다.
🎜여기 <code>상단, 왼쪽 좌표가 있습니다: 🎜🎜🎜🎜이미지 왼쪽 하단에 있는 커서를 읽을 수 있습니다. . 수평 및 수직 평면에서만 눈금자를 사용할 수도 있습니다. 🎜🎜아래 스크린샷은 <code>오른쪽, 아래쪽 좌표를 보여줍니다: 🎜🎜🎜🎜마지막으로: 🎜
<fig>
<img src="https://images.unsplash.com/photo-1600618538034-fc86e9a679aa?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ" alt="무시할 수 있는 유용한 HTML 태그(요약)" >
<figcaption>basketball<figcaption/>
<fig>
🎜다른 모양도 사용할 수 있지만 각 모양의 좌표는 다르게 작성됩니다. 🎜🎜<code>원의 경우 원 중심의 좌표가 있어야 하며 반경을 추가해야 합니다. 🎜
The code block
🎜🎜🎜 중심 좌표 원은 왼쪽 하단에 위치하는 데 동의하고 중심에서 끝까지의 수평 거리가 반경입니다. 🎜🎜<code>폴리를 만드는 것은 자유롭게 그리는 것과 비슷합니다. 이미지의 다른 지점을 연결하기만 하면 연결됩니다: 🎜
<figure>
<video src="ex-b.mov"></video>
<figcaption>Exhibit B. The <cite>Rough Copy</cite> trailer.</figcaption>
</figure>
<p><dfn title="HyperText Markup Language">HTML</dfn>
Is the standard markup language for creating web pages.
</p>
也可以与 <code><abbr></abbr> 结合使用:
<!DOCTYPE html>
<html>
<body>
<p><dfn><abbr title="HyperText Markup Language">HTML</abbr></dfn>
It's the standard markup language for creating web pages.</p>
</body>
</html>
这可以增强可访问性,因为这样编写语义 HTML 可以使阅读器和浏览器在适合用户的上下文中解释页面上的内容。
<fig>
<img src="https://images.unsplash.com/photo-1600618538034-fc86e9a679aa?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ" alt="무시할 수 있는 유용한 HTML 태그(요약)" >
<figcaption>basketball<figcaption/>
<fig>
这些标签也可以与代码块、视频和音频一起使用,如下所示。
代码块:
The code block
视频:
<figure>
<video src="ex-b.mov"></video>
<figcaption>Exhibit B. The <cite>Rough Copy</cite> trailer.</figcaption>
</figure>
<details>
<summary>
<span>I am an introvert</span>
</summary>
<div>An introvert is a person with qualities of a personality type known as introversion, which means that they feel more comfortable focusing on their inner thoughts and ideas, rather than what's happening externally. They enjoy spending time with just one or two people, rather than large groups or crowds</div>
<div>
</details>
<blockquote cite="https://en.wikipedia.org/wiki/History_of_Nigeria">
The history of Nigeria can be traced to settlers trading across the middle East and Africa as early as 1100 BC. Numerous ancient African civilizations settled in the region that is known today as Nigeria, such as the Kingdom of Nri, the Benin Empire, and the Oyo Empire. Islam reached Nigeria through the Borno Empire between (1068 AD) and Hausa States around (1385 AD) during the 11th century,[1][2][3][4] while Christianity came to Nigeria in the 15th century through Augustinian and Capuchin monks from Portugal. The Songhai Empire also occupied part of the region.[5]
</blockquote>
<p>The best movie ever made is <cite>The Godfather</cite> by
Francis Ford Coppola . My favorite song is <cite>Monsters You Made</cite> by the Burna boy.</p>