재료-경고 아이콘
이 장에서는 Google의 (Material) Alert 아이콘 사용에 대해 설명합니다. 그것을 가정custom 아래에 주어진 예와 같이 크기와 색상을 정의한 CSS 클래스 이름입니다.
<!DOCTYPE html>
<html>
<head>
<link href = "https://fonts.googleapis.com/icon?family=Material+Icons" rel = "stylesheet">
<style>
i.custom {font-size: 2em; color: green;}
</style>
</head>
<body>
<i class = "material-icons custom">accessibility</i>
</body>
</html>
다음 표에는 Google의 (자료) 경고 아이콘의 사용 및 결과가 포함되어 있습니다. 위 프로그램의 <body> 태그를 표에 제공된 코드로 대체하여 각 출력을 얻습니다.
용법 | 결과 |
---|---|
<i class = "material-icons custom"> add_alert </ i> | add_alert |
<i class = "material-icons custom"> 오류 </ i> | 오류 |
<i class = "material-icons custom"> error_outline </ i> | error_outline |
<i class = "material-icons custom"> 경고 </ i> | 경고 |