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
- ansible
- NGINX
- mariadb
- kubernetes
- Container
- linux
- docker install
- ubuntu
- nodemon
- docker-compose
- GORM
- html
- db
- Git
- kube
- golang
- npm
- 쿠버네티스
- regexp
- time_zone
- node
- k8s
- GitHub
- Delete
- kubespray
- vscoe
- docker
- bash
- go
- kubernetes #container
Archives
- Today
- Total
Deve.haeri
[CSS/기본] Font 본문
1. font-size : 글씨 크기 설정
2. font-stlye : 기울임 설정
3. font-weight : 글씨 굵기 설정
4. font-family : 글씨체 설정
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type = "text/css">
div{
font-size : 20px;
font-stlye : italic; /*none, italic (기울임) */
font-weight : 100; /*100,200, ...900, bold (굵게) */
font-family : 'Naum Gothic','sans-serif' /*Nanum Gothic이 없으면 sans-serif(고딕 계열) 사용 */
/*
sans-serif : 고딕 계열
serif : 명조 계열
*/
}
</style>
</head>
'HTML-CSS' 카테고리의 다른 글
[CSS/기본] Icon 넣기 (0) | 2020.11.08 |
---|---|
[CSS/기본] Webfont (0) | 2020.11.08 |
[CSS/기본] Text (0) | 2020.11.08 |
[CSS/기본] Unit (0) | 2020.11.08 |
[CSS/기본] Color 속성 (0) | 2020.11.08 |
Comments