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 |
Tags
- Graphic
- Menu
- JavaScript
- HTML
- mybatis
- 이클립스
- Android
- 국제화
- 클래스
- 어노테이션
- paint
- struts2
- 메소드
- JSP
- 안드로이드
- AWT
- Eclips
- 전화걸기
- Java
- 배열
- OGNL
- 에러페이지
- Spring
- 오버로딩
- 메서드
- 기본
- 생성자
- layout
- 예외처리
- oracle
Archives
- Today
- Total
note
CSS 기본 태그 내부삽입형,문서내 지정형,외부문서 삽입형 본문
CSS 파일 생성
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>CSS태그 내부 삽입형</title> </head> <body> <font style="font-size:15pt">안녕</font> <span style="font-size:30pt">겨울</span> <div style="font-size:30pt">겨울눈</div> <p style="font-size:30pt">행운의 하루</p> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>CSS문서내 지정형</title> <style type="text/css"> <!-- font {font-size:20pt} span {font-size:15pt} body {font-size:30pt} div {font-size:40pt} //--> </style> </head> <body> <font>안녕하세요</font> <span>즐거운 하루</span> ㅋㅋㅋ <div>눈이 내리는 마을</div> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>CSS 외부 문서 삽입 형</title> <link rel=stylesheet href="style.css" type="text/css"> </head> <body> <span>하루 종일 행복해~~</span> <div>겨울 여행</div> <p>봄이 오는 소리</p> </body> </html>
@CHARSET "UTF-8"; span {font-size:20pt;color:red} div {font-size:35pt;color:blue} p {font-size:25pt;color:gray}가장 많이 쓰는 방식은 외부문서 삽입형과
문서내 지정형이 있다
'CSS > 기본' 카테고리의 다른 글
CSS 테이블 스타일 적용 (0) | 2012.02.01 |
---|---|
CSS 가상선택자 사용 (0) | 2012.02.01 |
CSS ID선택자 사용 (0) | 2012.02.01 |
CSS 클래스 선택자 사용 (0) | 2012.02.01 |