1 / 6

CSS 는 무엇인가 ?

CSS 는 무엇인가 ?. 1. CSS. Cascading Style Sheet HTML 의 한계극복  새로운 효과 페이지의 일률적인 관리  일관성 있는 페이지 완성. 2. CSS 의 사용방법. 1. 문서의 HEAD 에 정의하기. 2. 스타일 속성 사용하기. 3. 외부 CSS 파일 사용하기. 2. CSS 의 사용방법. 1. 문서의 HEAD 에 정의하기. <html> <head> <style type=“text/ css ”> <!-- Body { Font-size : 9pt;

Download Presentation

CSS 는 무엇인가 ?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CSS 는 무엇인가?

  2. 1. CSS • Cascading Style Sheet • HTML의 한계극복  새로운 효과 • 페이지의 일률적인 관리  일관성 있는 페이지 완성

  3. 2. CSS의 사용방법 1. 문서의 HEAD에 정의하기 2. 스타일 속성 사용하기 3. 외부 CSS파일 사용하기

  4. 2. CSS의 사용방법 1. 문서의 HEAD에 정의하기 <html> <head> <style type=“text/css”> <!-- Body { Font-size : 9pt; Font-family : 굴림; } --> </style> </head> </html>

  5. 2. CSS의 사용방법 2. 스타일 속성 사용하기 <table width=400 border=1> <tr> <td style=“font-size : 11pt; font-family : 돋움”>Internet Media LCC</td> <td style=“font-size : 11pt; font-family : 돋움”>HTML</td> </tr> </table>

  6. 2. CSS의 사용방법 3. 외부 CSS파일 사용하기 <html> <head> <link rel = “stylesheet” type=“text/css” href=“css.css”> </head> </html>

More Related