HTML기초_04

라오니·2022년 11월 27일
0

HTML

목록 보기
3/3

01. Doctype & Document Structure

<!DOCTYPE html> 이 문서는 html5 야.
<html> 
	<head>
    웹 문서에 관한 데이터
    </head>
    
    <body> 
    웹 문서에 들어갈 내용
    </body>
</html>

02. Title, Link, Style & Script

<head>
	<title>문서의 대제목</title> //검색 최적화에 매우 중요
    <link rel="" href="">
    <style>css코드</style> //이건 쓰지 않기
</head>
<body>
	html문서 내에 JS 파일을 첨부할 때 사용
	<script scr="경로"></script>
    <script>JS 코드</scricp>
</body>

*title를 잘 쓰는 방법
1. 키워드를 단순 나열 노노
2. 페이지에 맞는 키워드 넣기

03. Meta Data

<head>
	<meta name="메타데이터 종류" content="메타데이터 값">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
profile
적어도 어제보다 오늘 더 발전만 하면 된다는 마인드!

0개의 댓글