본문 바로가기
Web Development/CSS

6. CSS: The Very Basics

by 사향낭 2022. 3. 15.

60. Including Styles Correctly

 

 

style을 입히는 세 가지 방법이 있다.

 

1. Inline styles, 2. the <style> element, 3. external stylesheet

 

세 번째 방법이 주로 쓰인다.

 

.css 파일을 만들고 link element로 연결시켜 준다.

 

index.html

 

<!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>CSS BEGINNING</title>
    <link rel="stylesheet" href="app.css">
</head>

<body>
    <h1>Hello CSS!!!</h1>
</body>

</html>

 

app.css

 

h1 {
    color: brown;
}

 

result

 

 

62 - 63. Colors Systems: RGB & Named Colors & Hexadecimal

 

 

css 파일에서 색을 표현할 때 사용하는 여러 방법이 있다.

 

keyword를 사용하는 방법, rgb 값을 사용하는 방법, hsl 값을 사용하는 방법 등

'Web Development > CSS' 카테고리의 다른 글

10. Responsive CSS & Flexbox  (0) 2022.03.17
9. Other Assorted Useful CSS Properties  (0) 2022.03.16
8. The CSS Box Model  (0) 2022.03.15
7. The World of CSS Selectors  (0) 2022.03.15

댓글