본문 바로가기
프로그래머 하루3시간

Html 5 shiv 링크, HTML default setting

by Money Grow 2018. 1. 16.

Html 5 shiv 링크

https://github.com/aFarkas/html5shiv



사용방법

다운받은 폴더에서 src 폴더에 있는 html5shiv.js 파일을 프로젝트 폴더의 js 폴더 안에 넣어주고 아래와 같이 script src 작성해주면 된다.

html 5 형식에 맞춰 구버전도 인식이 된다.




<!DOCTYPE html>
<html lang="ko">
    <head>
        <title>Motiongrapher.com</title>
        <meta charset="utf-8">

        <!-- stylesheet -->
        <link rel="stylesheet" type="text/css" href="style.css">

        <!-- HTML5 Shiv -->
        <script src="js/html5shiv.js"></script>

    </head>

<body>


</body>

</html>







<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" type="text/css" href="style_class.css">
        <link rel="shortcut icon" href="img/001-food-1.png">
    </head>

        <body>
            <header>
                test 문구
            </header>
            <article>
            <nav>
            </nav>
            <content>
            </content>
            </article>

        </body>

    </html>

댓글