웹(클라이언트)/CSS2021. 9. 27. 16:12

소스코드

<!DOCTYPE html>
<html lang="en" dir="ltr">
<style media="screen">
  p{
    /*font-size:5rem;
    font-family: arial, verdana, "Helvetica Neue", monospace;
    font-weight: bold;
    line-height: 2;*/
    font :bold 5rem/2 arial, veredana, "Helvertica Neue", serif  /*위의 속성들이 순서대로 설정해주는 집합체, 순서중요*/
  }
</style>

  <head>
    <meta charset="utf-8">
    <title>Text font</title>
  </head>
    <body>
      <p>
        Hello world <br>
        Hello world
      </p>
    </body>

</html>

 

 

결과값

'웹(클라이언트) > CSS' 카테고리의 다른 글

inline box지정  (0) 2021.09.27
특정 id 또는 class 내부의 tag만 기능 지정 방법  (0) 2021.09.27
font Color지정방법 3가지(rgb, hex, name)  (0) 2021.09.27
float연습  (0) 2021.09.27
flex 사용하기  (0) 2021.09.27
Posted by 여동동