HTML - CSS/html 공부

[HTML] style 태그

congs 2023. 4. 5. 17:23

style 태그

 

적용

1. 적용 태그에 style 속성을 이용하여 적용하는 방법

<img src="/image/냥3.jpg" alt="" style="width: 200px;">

 

2.  <style> 태그 사용하는 방법 : head 내부에서 선언하는 방법

<head>
    <style>
        img{
            height: 200px;
        }
    </style>
</head>
<body>
    <input type="text" id="input1">
</body>

 

3. link를 이용하여 이미 만들어져있는 css파일 가져오는 방법 (link head안에 추가)

<head>
    <link rel="stylesheet" href="/day02/style.css">
</head>
<body>
    <input type="text" id="input1">
</body>
#input1 {
    height: 100px;
    font-size: 50px;
    color: blue;
}

 

'HTML - CSS > html 공부' 카테고리의 다른 글

[HTML] img 태그  (0) 2023.04.05
[HTML] ifame 태그  (0) 2023.04.05
[HTML] table 태그  (0) 2023.04.05
[HTML] list 태그  (0) 2023.04.05
[HTML] textarea 태그  (0) 2023.04.05