레이블 관계

5274 단어 HTML
1. 이중 태그
<head> </head>

2, 단일 레이블
<br />

3. 양자 특징/닫기 부표 라벨이 적고 이중 라벨이 많다
4. 중첩 관계
<html>
	<head>
		<title></title>
	</head>
</html>

5. 병렬 관계
<head></head>
<body></body>

6. 단축 조작 방식(1) 닫기 문자 자동 수정:
<body>abcdefg</

상술한 방식은 한 쌍의 바디를 직접 생성한다
(2)!바로 가기 탭

위에서 단축키를 누르면 다음과 같은 코드가 생성됩니다.
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>

</body>
</html>

(3)html:5 바로 가기tab
html:5

위에서 단축키를 누르면 다음과 같은 코드가 생성됩니다.
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>

</body>
</html>

좋은 웹페이지 즐겨찾기