HTML 태그는 HTML 문서의 메타데이터를 선언하는 데 사용됩니다. 속성은 다음과 같습니다.
Property | Value | Description |
---|---|---|
Name | author de 설명 keywords generator revised others |
속성의 이름입니다. |
content | text | http-equiv 또는 이름과 관련된 메타 정보를 정의합니다. |
http-equiv | content-type expires refresh set-cookie |
content 속성을 HTTP 헤더에 연결하세요. |
scheme | text | 은 콘텐츠 속성의 값을 해석하는 데 사용되는 형식을 정의합니다. |
다음 코드를 실행하여 메타데이터를 포함할 수 있습니다.
<html> <head> <title>HTML meta tag</title> <meta name = "keywords" content = "HTML, meta tag, metadata" /> <meta name = "description" content = "Description of the document" /> <meta http-equiv = "refresh" content = "10" /> </head> <body style = "background-color:gray"> Document content goes here </body> </html>
위 내용은 HTML 문서에 메타데이터 포함의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!