Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ul
- 한정수 강사님
- Python
- !doctype html
- table
- option
- rowspan
- 인라인 레벨 요소
- JavaScript
- HTML정의
- :active
- Li
- 전체 선택자
- Ol
- Head
- Title
- textarea
- colspan
- Form
- ::first-letter
- BODY
- img
- ::first-line
- BR
- ::before
- tag
- Border
- JAVA 개발 환경 설정
- select
- 속성 선택자
Archives
- Today
- Total
개발 공부 기록하기
DAY 9. Google Font 본문
https://fonts.google.com/?subset=korean&preview.size=64&preview.layout=row
Google Fonts
Making the web more beautiful, fast, and open through great typography
fonts.google.com
책에 나온 Nanum Pen Script로
web font를 바꿔봐야겠다.
위의 링크 Google Font로 들어가서
Language를 Korean으로 고르고
Nanum Pen Script 찾아서 클릭해 들어가서 스크롤을 조금만 내리면 아래 화면이 나온다.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>구글 폰트 사용하기</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap');
h1 {
font-size: 60px;
font-weight: bold;
font-family: 'Nanum Pen Script', cursive;
}
</style>
</head>
<body>
<h1>HTML+CSS+JavaScript</h1>
</body>
</html>
↓
'프밍 > CSS' 카테고리의 다른 글
DAY 10. 텍스트 관련 스타일(2): text-align, line-height, text-decoration (0) | 2022.11.03 |
---|---|
DAY 9. 텍스트 관련 스타일(1): color (0) | 2022.11.03 |
DAY 8. Web Font (0) | 2022.11.01 |
DAY 8. 글꼴 관련 스타일(3): font-style, font-weight (0) | 2022.11.01 |
DAY 7. 글꼴 관련 스타일(2): font-size (0) | 2022.10.31 |
Comments