Toggle theme
문제를 잘 정의하는 것은 문제를 절반 해결한 것이다. - 2023.12
사용자 도구
Toggle theme
로그인
사이트 도구
검색
도구
문서 보기
이전 판
PDF로 내보내기
Fold/unfold all
역링크
최근 바뀜
미디어 관리자
사이트맵
로그인
>
최근 바뀜
미디어 관리자
사이트맵
현재 위치:
start
»
wiki
»
css
»
css_note
»
css_icons
wiki:css:css_note:css_icons
이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요.
====== CSS Icons ====== <WRAP left notice 80%> * description : CSS Icons * author : 오션 * email : shlim@repia.com * lastupdate : 2021-03-09 </WRAP> <WRAP clear></WRAP> \\ \\ =====Source of the article==== * [[https://www.w3schools.com/css/css_icons.asp|CSS Icons]] \\ \\ ======CSS Icons====== 아이콘 라이브러리를 사용하여 아이콘을 쉽게 HTML페이지에 추가할 수 있습니다.\\ \\ =====아이콘 삽입 방법===== HTML 페이지에 아이콘을 추가하는 가장 단순한 방법은 Font Awesome과 같은 아이콘 라이브러리를 사용하는 것입니다.\\ <i> 또는 <span>과 같은 인라인 HTML 요소에 지정한 아이콘의 이름을 추가합니다.\\ 하기 아이콘 라이브러리의 모든 아이콘들은 CSS ( 사이즈, 컬러, 쉐도우 등)로 커스터마이징할 수 있는 확대/축소할 수 있는 벡터(scalable vectors)입니다.\\ \\ =====Font Awesome Icons===== Font Awesome 아이콘을 사용하기 위해, [[https://fontawesome.com/|Font Awesome]]에서 회원가입을 하고 HTML 페이지의 <head>섹션에 추가하기 위한 코드를 받습니다.\\ ''<script src="https://kit.fontawesome.com/yourcode.js" crossorigin="anonymous"></script>''\\ **Note: 다운로드나 설치가 필요없습니다.**\\ \\ ====예제==== <code html> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Font Awesome Icons</title> <script src="https://kit.fontawesome.com/fontawesome가입 kit's code.js" crossorigin="anonymous"></script> </head> <body> <p>Some Font Awesome icons</p> <i class="fas fa-cloud"></i> <i class="fas fa-heart"></i> <i class="fas fa-car"></i> <i class="fas fa-file"></i> <i class="fas fa-bars"></i> <p>Styled Font Awesome icons (size and color):</p> <i class="fas fa-cloud" style="font-size:24px;"></i> <i class="fas fa-cloud" style="font-size:36px;"></i> <i class="fas fa-cloud" style="font-size:48px;color:red;"></i> <i class="fas fa-cloud" style="font-size:60px;color:lightblue;"></i> </body> </html> </code> \\ \\ =====Bootstrap Icons===== Bootstrap glyphicons(글리프아이콘즈)를 사용하기 위해, 아래의 라인을 HTML 페이지의 <head>섹션 내부에 추가합니다.\\ ''<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">''\\ **Note: 다운로드나 설치가 필요없습니다.**\\ \\ ====예제==== <code html> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Bootstrap Icons</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> </head> <body> <i class="glyphicon glyphicon-cloud"></i> <i class="glyphicon glyphicon-remove"></i> <i class="glyphicon glyphicon-user"></i> <i class="glyphicon glyphicon-envelope"></i> <i class="glyphicon glyphicon-thumbs-up"></i> </body> </html> </code> \\ \\ =====Google Icons===== Google 아이콘을 사용하기 위해, 아래의 라인을 HTML 페이지의 <head>섹션 내부에 추가합니다.\\ ''<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">''\\ **Note: 다운로드나 설치가 필요없습니다.**\\ \\ ====예제==== <code html> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Google Icons</title> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> </head> <body> <i class="material-icons">cloud</i> <i class="material-icons">favorite</i> <i class="material-icons">attachment</i> <i class="material-icons">computer</i> <i class="material-icons">traffic</i> </body> </html> </code> {{tag>오션, CSS icons }}
/volume1/web/dokuwiki/data/pages/wiki/css/css_note/css_icons.txt
· 마지막으로 수정됨: 2023/01/13 18:44 (바깥 편집)
문서 도구
문서 보기
이전 판
역링크
PDF로 내보내기
Fold/unfold all
맨 위로