<h1 style=“color: red;”>frontend 101</h1>
<link href=“index.css” rel=“stylesheet” type=“text”/css>
- Href: 속성에 css 파일 경로를 작성
- Type: link 태그로 연결되는 파일이 어떤 것인지 알려준다. Css 파일을 연결하므로 값은 항상 “text/css”
- Rel: html 파일과 css 파일과의 관게를 설명하는 속성. css파일을 링크할때는 항상 “stylesheet” 값을 대입
P{
Color: red;
}
- p: 디자인을 적용할 선택자(selector). 선택자는 태그 이름, class 이름, id 이름 등 여러 종류가 올 수 있다.
- color: property (속성)
- red: 속성 값
. ClassName{
Font-weight: bold;
}
#profile{
border-width: 1px;
text-align: center;
}