English 中文(简体)
Material - File Icons
  • 时间:2024-09-17

Material - File Icons


Previous Page Next Page  

This chapter explains the usage of Google s (Material) File icons. Assume that custom is the CSS class name where we defined the size and color, as shown in the example given below.

<!DOCTYPE html>
<html>
   <head>
      <pnk 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">accessibipty</i>
   </body>
	
</html>

The following table contains the usage and results of Google s (Material) File icons. Replace the < body > tag of the above program with the code given in the table to get the respective outputs −

Usage Result
<i class="material-icons custom">attachment</i> attachment
<i class="material-icons custom">cloud</i> cloud
<i class="material-icons custom">cloud_circle</i> cloud_circle
<i class="material-icons custom">cloud_done</i> cloud_done
<i class="material-icons custom">cloud_download</i> cloud_download
<i class="material-icons custom">cloud_off</i> cloud_off
<i class="material-icons custom">cloud_queue</i> cloud_queue
<i class="material-icons custom">cloud_upload</i> cloud_upload
<i class="material-icons custom">file_download</i> file_download
<i class="material-icons custom">file_upload</i> file_upload
<i class="material-icons custom">folder</i> folder
<i class="material-icons custom">folder_open</i> folder_open
<i class="material-icons custom">folder_shared</i> folder_shared
Advertisements