온라인 예시 보기 - HTML 문서의 제목을 정의합니다 태그를 사용하여 HTML 문서의 제목을 정의합니다 < ;base> - 모든 링크의 URL을 정의합니다.를 사용하여 페이지에 있는 모든 링크의 기본 링크 대상 주소를 정의합니다. - HTML 문서에 대한 메타 태그 제공 요소를 사용하여 HTML의 설명, 키워드, 작성자, 문자 집합 등을 설명합니다. 문서. HTML <head> 요소 요소에는 모든 head 태그 요소가 포함됩니다. 요소에는 스크립트, 스타일 파일(CSS) 및 다양한 메타 정보를 삽입할 수 있습니다. 헤드 영역에 추가할 수 있는 요소 태그는 다음과 같습니다: , , <meta>, <link>, <script>, <noscript> < base>.</p> <p style='margin: 20px 0px; padding: 5px 5px 5px 10px; font-weight: normal; font-family: Verdana, "Microsoft YaHei"; border-left: 5px solid rgb(255, 97, 0); background: rgb(255, 255, 255); font-size: 20px; color: rgb(69, 69, 69); white-space: normal;'>HTML <title> 요소 </p> <p><title> 태그는 다양한 문서의 제목을 정의합니다. </p> <p><title>은 HTML/XHTML 문서에 필요합니다. </p> <p><title> 요소: </p> <p>은 브라우저 도구 모음의 제목을 정의합니다. </p> <p>웹 페이지를 즐겨찾기에 추가할 때 표시되는 제목 </p> <p><a href="http://www.php.cn/code/8331.html" target="_blank">검색</a> 엔진 결과 페이지에 표시되는 제목</p> <p>간단한 HTML 문서: </p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:css;toolbar:false"><!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html></pre><div class="contentsignin">로그인 후 복사</div></div><p style="margin: 20px 0px; padding: 5px 5px 5px 10px; font-weight: normal; font-family: Verdana, "Microsoft YaHei"; border-left: 5px solid rgb(255, 97, 0); background: rgb(255, 255, 255); font-size: 20px; color: rgb(69, 69, 69); white-space: normal;">HTML <base> 요소 </p><p>< ; 기본> 태그는 HTML 문서의 모든 링크 태그에 대한 기본 링크 역할을 하는 기본 링크 주소/링크 대상을 설명합니다. </p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <base href="www.php.cn/images/" target="_blank"> </head></pre><div class="contentsignin">로그인 후 복사</div></div><p style="margin: 20px 0px; padding: 5px 5px 5px 10px; font-weight: normal; font-family: Verdana, "Microsoft YaHei"; border-left: 5px solid rgb(255, 97, 0); background: rgb(255, 255, 255); font-size: 20px; color: rgb(69, 69, 69); white-space: normal;">HTML <link> link> 태그는 문서와 외부 리소스 간의 관계를 정의합니다. </p><p><link> 태그는 일반적으로 스타일 시트에 연결하는 데 사용됩니다. </p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head></pre><div class="contentsignin">로그인 후 복사</div></div><p>HTML <style> 요소는 </p><p style="margin: 20px 0px; padding: 5px 5px 5px 10px; font-weight: normal; font-family: Verdana, "Microsoft YaHei"; border-left: 5px solid rgb(255, 97, 0); background: rgb(255, 255, 255); font-size: 20px; color: rgb(69, 69, 69); white-space: normal;"><style> HTML 문서 </p>Quote<p> 주소의 파일입니다.<a href="http://www.php.cn/wiki/231.html" target="_blank"></a><style> 요소에서 HTML 문서를 렌더링할 스타일 파일을 지정해야 합니다.</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <style type="text/css"> body {background-color:yellow} p {color:blue} 로그인 후 복사HTML < 메타> 요소meta 태그는 몇 가지 기본 메타데이터를 설명합니다. 태그는 메타데이터도 페이지에 표시되지 않지만 브라우저에서 구문 분석됩니다. META 요소는 일반적으로 웹페이지 설명, 키워드, 파일의 마지막 수정 시간, 작성자 및 기타 메타데이터를 지정하는 데 사용됩니다. 메타데이터는 브라우저(콘텐츠가 표시되거나 페이지가 다시 로드되는 방식), 검색 엔진(키워드) 또는 기타 웹 서비스에서 사용될 수 있습니다. 일반적으로 영역 태그 - 검색 엔진용 키워드 정의를 위한 사용 예: 로그인 후 복사 【관련 추천】 1. 특별 추천: "php Programmer Toolbox" V0.1 버전 다운로드 2. 무료 HTML 온라인 동영상 튜토리얼 3. php.cn 원본 HTML5 동영상 🎜>