웹디자인 기능사) HTML 핵심!

1) HTML5

<!doctype html>

 

2) title

<title>JUST쇼핑몰</title>

 

3. utf-8

<meta charset="utf-8">
charset "utf-8";

 

4. jquery library 연결(only 자바스크립트인 경우 생략), (3.6.0 버전은 다를 수 있음)

<script src="jquery-3.6.0.min.js">
</body>
</html>

 

5. 유효성검사(기술적 준수 사항)

* 시험장에선 인터넷이 되지 않으므로 공부 시  자주 확인하여 문제가 생기지 않도록 한다. (HTML5 체크 후 검사)

https://validator.w3.org/#validate_by_uri+with_options 

 

The W3C Markup Validation Service

Validate by File Upload Note: file upload may not work with Internet Explorer on some versions of Windows XP Service Pack 2, see our information page on the W3C QA Website.

validator.w3.org

 

https://jigsaw.w3.org/css-validator/#validate_by_upload+with_options 

 

W3C CSS 검사 서비스

파일 업로드를 통한 검사 직접 입력을 통한 검사

jigsaw.w3.org

 

 

* 제이쿼리 라이브러리 연결보다 나중에 작성해야 한다.

<!--제이쿼리 라이브러리 연결 링크 먼저-->
<script src="script/main.js">
</body>
</html>

콘솔 오류 없어야함(F12 - Console)

 

<a href="#"></a>

 

 

<img src="경로" alt="">

 


 

제출방법)

  Comments,     Trackbacks