CSS_06_link, 중복 제거

charl hi·2021년 7월 10일
0

CSS

목록 보기
6/6

http://127.0.0.1/~.html 로 접속하자. localhost는 ㄴㄴ


  • defines the relationship between the current document and an external resource.
  • often used to link to external style sheets.
  • 속성 rel="" : Required. Specifies the relationship between the current document and the linked document
  • 속성 href="" : URL. the location of the linked document

🌟 방법 🌟
1. <style> 안에 있는 것들을 잘라내고 따로 파일명.css파일을 만든다.
2. <style>를 아예 지우고 그곳에 <link rel="stylesheet" href="파일명.css"> 를 넣는다.



  <link rel="stylesheet" href="style.css">
  

검사 -> network -> style.css 파일을 확인할 수 있다.




Ref

0개의 댓글