link와 import

외부로 파일을 빼는 방법은 크게 두가지

1. <link rel="stylesheet" href="style.css">

2. <style>@import url("style.css")</style>

<!doctype html>
<html>
<head>
<!--    <link rel="stylesheet" href="style.css">-->
    <style>
        @import url("style.css")
    </style>
</head>
<body>
    <h1>page2</h1>
</body>
</html>

//중복을 제거하는 코드를 만들자.

코드 경량화(minify)

코드의 크기를 줄이는 것

파일명.min.css

preprocessor

stylus

+ Recent posts