[HTML] 코드아카데미 문제풀이 "Build a Website: Bootstrap" (1/14)
Adding Bootstrap
1. 문제
Bootstrap is a CSS framework used to build pages faster. Bootstrap provides a lot of useful CSS out of the box. Check out the Bootstrap file at "http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css" - it has CSS properties and values, many of which you've seen already, to style HTML.
To use Bootstrap in a web page, you need to link to it from index.html.
2. 풀이
css를 적용시키는 방법 중에서 링크를 통한 적용을 연습해볼 수 있는 페이지이다.
해드 태그 아래 링크 태그를 만들고 href 속성으로 주소를 rel 속성으로 stylesheet를 주면 된다.
3. 해답
index.html의 head 에 다음과 같이 추가하면 통과합니다.
반응형