CSS 06 link、重複データ削除


接続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">
      
    チェック->ネットワーク->style.cssファイルを表示できます.

    Ref

  • 生活コードCSS
  • w3schools