CSS-External CSS

임재헌·2023년 3월 24일

CSS

목록 보기
4/23
<!DOCTYPE html>   
<html lang="ko"> 
<head>
    <link rel="stylesheet" href="../css/mystyle.css">
       <title> external CSS </title> 
      <!-- https://www.w3schools.com/css/css_howto.asp-->
      <!-- CSS 파일 import-->
      <!-- CSS 스타일만 별도로 모아 놓은 파일-->
    </head>
    <body>
        <h3> external CSS</h3>
        
        Sed at sollicitudin turpis <br>
        vel dictum <br>
        <input type="text" class="line">
        <hr>
        <textarea class="line" cols="30" rows="5"></textarea>
        <hr>
        <div id="#myLayer"></div>
    </body>
</html>

0개의 댓글