CSS · HTML
HTML 스타일 CSS
혜원21
2019. 10. 12. 20:16
*
CSS. Cascading Style Sheets.
csss는 html의 요소가 브라우저에 표시하는 방법을 정의한다.
<!DOCTYPE html>
<html>
<head>
<!-- 외부 CSS -->
<link rel="stylesheet" type="text/css" href="./style.css">
<!-- 내부 CSS -->
<style>
body {background-color: tomato;}
h1 {color: #fff;}
p {color: lightgray;}
</style>
</head>
<body>
<!-- 인라인 CSS -->
<p style="color: #000; font-size: 200%">
</body>
</html>
- css를 추가하는 방법 3가지.
인라인 : html 요소에 style 속성을 사용.
내부 : <head> 에 <style>을 사용.
외부 : 외부 css를 불러오는 방법.