반응형
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">   
    <title>Document</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>

</body>
</html>

 

이런식으로 link rel ="stylesheet" href ="내가 참고하고자할 css파일 경로" 를 하시면 적용이 됩니다.

 

style.css안에는 이런식으로 style에 관한게 들어있습니다.

 


*{
   box-sizing : border-box;
}

.leftBanner{
   background-color: black;
   color:white;
   height :100%;
   
 }

.leftBannerImg{
   padding-top:30px;
   padding-right:30px;
   text-align: center;
   padding-bottom: 150px;

}

style.css

반응형