본문 바로가기

HTML&CSS

HTML 문서에 CSS 스타일 시트 만드는 방법들

1. <head>안에 <style></style>태그에 스타일 시트 작성 (웹 페이지 전체에 적용)

2. <body>안에 해당 태그에 속성 style=" : ;" 로 스타일 시트 작성

3. 스타일 시트를 멸도 css파일로 작성 - <head>안에 <link>태그나 @import로 불러 사용

 

1. & 2.

1.과 2. 두가지 방법으로 스타일 적용함.

아래를 펼치면 스타일 시트 작성 방법이 중복되었을 떄 우선권을 가지는 것을 알 수 있어요!

 

3.

두가지 중에 <link type="text/css" rel="stylesheet" href="      .css">더 많이 사용! 코드는 아래 접혀있어요!

 

더보기

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <link type="text/css" rel="stylesheet" href="mystyle.css">

    <style>

        @import url(mystyle.css);

    </style>

    <!--두 가지 중에 link 태그를 더 많이 사용-->

</head>

<body>

    <h3>손연재</h3>

    <hr>

    저는 체조 선수 손연재입니다. 음악을 들으면서 

책 읽기를 좋아합니다. 김치찌개와 막국수 무척 

좋아합니다.

</body>

</html>

아래 코드는 접혀있어요!

더보기

/*mystyle.css*/

body {

    background-colorlinen;

    color:teal;

    margin-left30px;

    margin-right30px;

}

 

h3 {

    text-aligncenter;

    colorcoral;

}