Font Awesome – Hand Icons

Font Awesome – Hand Icons ”; Previous Next This chapter explains the usage of Font Awesome Hand icons. Assume that custom is the CSS class name where we defined the size and color, as shown in the example given below. <html> <head> <link rel = “stylesheet” href = “https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css”> <style> i.custom {font-size: 2em; color: gray;} </style> </head> <body> <i class = “fa fa-adjust custom”></i> </body> </html> The following table shows the usage and the results of Font Awesome Hand 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=”fa fa-hand-rock-o custom”></i> <i class=”fa fa-hand-o-left custom”></i> <i class=”fa fa-hand-paper-o custom”></i> <i class=”fa fa-hand-rock-o custom”></i> <i class=”fa fa-hand-stop-o custom”></i> <i class=”fa fa-thumbs-o-up custom”></i> <i class=”fa fa-hand-lizard-o custom”></i> <i class=”fa fa-hand-o-right custom”></i> <i class=”fa fa-hand-peace-o custom”></i> <i class=”fa fa-hand-scissors-o custom”></i> <i class=”fa fa-thumbs-down custom”></i> <i class=”fa fa-thumbs-up custom”></i> <i class=”fa fa-hand-o-up custom”></i> <i class=”fa fa-hand-pointer-o custom”></i> <i class=”fa fa-hand-spock-o custom”></i> <i class=”fa fa-thumbs-o-down custom”></i> Print Page Previous Next Advertisements ”;

Material Icons

Material Icons ”; Previous Next Google provides a set of 750 icons designed under “material design guidelines” and these are known as Material Design icons. These icons are simple and they support all modern web browsers. Since these icons are vector based, they are scalable as well. To use these icons, we have to load the font (library) material-icons. Loading the Font (library) To load the material-icons library, copy and paste the following line in the <head> section of a webpage. <head> <link href = “https://fonts.googleapis.com/icon?family=Material+Icons” rel = “stylesheet”> </head> Using the Icon Google”s Material Icons provides a long list of icons. Choose any one of them and add the name of the icon class to any HTML element within the < body > tag. In the following example, we have used the icon named accessibility that belongs to the action category. Live Demo <!DOCTYPE html> <html> <head> <link href = “https://fonts.googleapis.com/icon?family=Material+Icons” rel = “stylesheet”> </head> <body> <i class = “material-icons”>accessibility</i> </body> </html> It will produce the following output − Defining the Size You can increase or decrease the size of an icon by defining its size in the CSS and using it along with the class name as shown below. In the following example, we have declared the size as 6 em. Live Demo <!DOCTYPE html> <html> <head> <link href = “https://fonts.googleapis.com/icon?family=Material+Icons” rel = “stylesheet”> <style> i.mysize {font-size: 6em;} </style> </head> <body> <i class = “material-icons mysize”>accessibility</i> </body> </html> It will produce the following output − Defining the Color You can use the CSS to define the color of an icon. The following example shows how you can change the color of an icon called accessibility. Live Demo <!DOCTYPE html> <html> <head> <link href = “https://fonts.googleapis.com/icon?family=Material+Icons” rel = “stylesheet”> <style> i.custom {font-size: 6em; color: green;} </style> </head> <body> <i class = “material-icons custom”>accessibility</i> </body> </html> It will produce the following output − List of Categories Google”s Material Icons font provides 519 icons in the following categories − Action Icons Alert Icons AV Icons Communication Icons Content Icons Device Icons Editor Icons File Icons Hardware Icons Image Icons Maps Icons Navigation Icons Notification Icons Social Icons Toggle Icons To use any of these icons, you have to replace the class name in the programs given in this chapter with the class name of the desired icon. In the coming chapters of this Unit (Material Icons), we have explained category-wise the usage and the respective outputs of various Material Icons. Print Page Previous Next Advertisements ”;

Web Icons – Home

Web Icons Tutorial PDF Version Quick Guide Resources Job Search Discussion We have a number of Icon Fonts (libraries) available that can be used on HTML pages just the way we use normal text fonts. Font Awesome, Bootstrap Glyphicons, and Google”s Material Icons are the prominent Icon Fonts used frequently by web developers. This tutorial explains how to use these Icon Fonts in practice. Audience This tutorial is meant for HTML developers who would like to use icons on their webpages. Prerequisites Before proceeding with this tutorial, you should have a good understanding of HTML and CSS. Print Page Previous Next Advertisements ”;

Font Awesome Icons

Font Awesome Icons ”; Previous Next Font Awesome icons library provides 519 free scalable vector icons. This library is completely free for both personal and commercial use. Originally designed for Bootstrap, these icons can be customized easily. Loading the Font Library To load the Font Awesome library, copy and paste the following line in the <head> section of the webpage. <head> <link rel = “stylesheet” href = “http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css”> </head> Using the Icon Font Awesome provides several icons. Choose one of them and add the name of the icon class to any HTML element within the <body> tag. In the following example, we have used the icon of the Indian currency. Live Demo <html> <head> <link rel = “stylesheet” href = “https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css”> </head> <body> <i class = “fa fa-inr”></i> </body> </html> It will produce the following output − Defining the Size You can increase or decrease the size of an icon by defining its size using CSS and using it along with the class name, as shown below. In the given example, we have declared the size as 6 em. Live Demo <html> <head> <link rel = “stylesheet” href = “http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css”> <style> i.mysize {font-size: 10em;} </style> </head> <body> <i class = “fa fa-inr mysize”></i> </body> </html> It will produce the following output − Defining the Color Just like size, you can define the color of the icons using CSS. The following example shows how to change the color of the Indian currency icon. Live Demo <html> <head> <link rel = “stylesheet” href = “https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css”> <style> i.custom {font-size: 6em; color: red;} </style> </head> <body> <i class = “fa fa-inr custom”></i> </body> </html> List of Categories Font Awesome provides 519 icons in the following categories − Web Application Icons Hand Icons Transportation Icons Gender Icons File Type Icons Spinner Icons Form Control Icons Payment Icons Chart Icons Currency Icons Text editor Icons Directional Icons Video Player Icons Brand Icons To use any of these icons, you have to replace the class name in the programs given in this chapter with the class name of the desired icon. In the coming chapters of this Unit (Font Awesome), we have explained category-wise the usage and the respective outputs of various Font Awesome icons. Print Page Previous Next Advertisements ”;

Font Awesome – Transportation Icons

Font Awesome – Transportation Icons ”; Previous Next This chapter explains the usage of Font Awesome Transportation icons. Assume that custom is the CSS class name where we defined the size and color, as shown in the example given below. <html> <head> <link rel = “stylesheet” href = “http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css”> <style> i.custom {font-size: 2em; color: gray;} </style> </head> <body> <i class = “fa fa-adjust custom”></i> </body> </html> The following table shows the usage and the results of Font Awesome Transportation 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=”fa fa-ambulance custom”></i> <i class=”fa fa-automobile custom”></i> <i class=”fa fa-bicycle custom”></i> <i class=”fa fa-bus custom”></i> <i class=”fa fa-cab custom”></i> <i class=”fa fa-car custom”></i> <i class=”fa fa-fighter-jet custom”></i> <i class=”fa fa-motorcycle custom”></i> <i class=”fa fa-plane custom”></i> <i class=”fa fa-rocket custom”></i> <i class=”fa fa-ship custom”></i> <i class=”fa fa-space-shuttle custom”></i> <i class=”fa fa-subway custom”></i> <i class=”fa fa-taxi custom”></i> <i class=”fa fa-train custom”></i> <i class=”fa fa-truck custom”></i> <i class=”fa fa-wheelchair custom”></i> Print Page Previous Next Advertisements ”;

Web Icons – Discussion

Discuss Web Icons ”; Previous Next We have a number of Icon Fonts (libraries) available that can be used on HTML pages just the way we use normal text fonts. Font Awesome, Bootstrap Glyphicons, and Google”s Material Icons are the prominent Icon Fonts used frequently by web developers. This tutorial explains how to use these Icon Fonts in practice. Print Page Previous Next Advertisements ”;

Material – Notification Icons

Material – Notification Icons ”; Previous Next This chapter explains the usage of Google”s (Material) Notification 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> <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> The following table contains the usage and results of Google”s (Material) Notification 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”>adb</i> adb <i class=”material-icons custom”>airline_seat_flat</i> airline_seat_flat <i class=”material-icons custom”>airline_seat_flat_angled</i> airline_seat_flat_angled <i class=”material-icons custom”>airline_seat_individual_suite</i> airline_seat_individual_suite <i class=”material-icons custom”>airline_seat_legroom_reduced</i> airline_seat_legroom_reduced <i class=”material-icons custom”>airline_seat_recline_extra</i> airline_seat_recline_extra <i class=”material-icons custom”>airline_seat_recline_normal</i> airline_seat_recline_normal <i class=”material-icons custom”>bluetooth_audio</i> bluetooth_audio <i class=”material-icons custom”>confirmation_number</i> confirmation_number <i class=”material-icons custom”>disc_full</i> disc_full <i class=”material-icons custom”>do_not_disturb</i> do_not_disturb <i class=”material-icons custom”>do_not_disturb_alt</i> do_not_disturb_alt <i class=”material-icons custom”>drive_eta</i> drive_eta <i class=”material-icons custom”>event_available</i> event_available <i class=”material-icons custom”>event_busy</i> event_busy <i class=”material-icons custom”>event_note</i> event_note <i class=”material-icons custom”>folder_special</i> folder_special <i class=”material-icons custom”>live_tv</i> live_tv <i class=”material-icons custom”>mms</i> mms <i class=”material-icons custom”>more</i> more <i class=”material-icons custom”>network_locked</i> network_locked <i class=”material-icons custom”>ondemand_video</i> ondemand_video <i class=”material-icons custom”>personal_video</i> personal_video <i class=”material-icons custom”>phone_bluetooth_speaker</i> phone_bluetooth_speaker <i class=”material-icons custom”>phone_forwarded</i> phone_forwarded <i class=”material-icons custom”>phone_in_talk</i> phone_in_talk <i class=”material-icons custom”>phone_locked</i> phone_locked <i class=”material-icons custom”>phone_missed</i> phone_missed <i class=”material-icons custom”>phone_paused</i> phone_paused <i class=”material-icons custom”>power</i> power <i class=”material-icons custom”>sd_card</i> sd_card <i class=”material-icons custom”>sim_card_alert</i> sim_card_alert <i class=”material-icons custom”>sms</i> sms <i class=”material-icons custom”>sms_failed</i> sms_failed <i class=”material-icons custom”>sync</i> sync <i class=”material-icons custom”>sync_disabled</i> sync_disabled <i class=”material-icons custom”>sync_problem</i> sync_problem <i class=”material-icons custom”>system_update</i> system_update <i class=”material-icons custom”>tap_and_play</i> tap_and_play <i class=”material-icons custom”>time_to_leave</i> time_to_leave <i class=”material-icons custom”>vibration</i> vibration <i class=”material-icons custom”>voice_chat</i> voice_chat <i class=”material-icons custom”>vpn_lock</i> vpn_lock <i class=”material-icons custom”>wc</i> wc <i class=”material-icons custom”>wifi</i> wifi Print Page Previous Next Advertisements ”;

Bootstrap – Components

Bootstrap Components ”; Previous Next This chapter explains the usage of Bootstrap Glyphicons (Components). Assume that custom is the CSS class name where we defined the size and color, as shown in the example given below. Live Demo <html> <head> <link rel = “stylesheet” href = “https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css”> <i.custom {font-size: 2em; color: blue;}> </head> <body> <i class = “glyphicon glyphicon-tree-deciduous custom”></i> </body> </html> The following table contains the usage and results of Bootstrap Glyphicons (Components). Replace the < body > tag of the above program with the code given in the table to get the respective outputs − Usage Result <i class=”glyphicon glyphicon-asterisk custom”></i> <i class=”glyphicon glyphicon-plus custom”></i> <i class=”glyphicon glyphicon-euro custom”></i> <i class=”glyphicon glyphicon-minus custom”></i> <i class=”glyphicon glyphicon-cloud custom”></i> <i class=”glyphicon glyphicon-envelope custom”></i> <i class=”glyphicon glyphicon-pencil custom”></i> <i class=”glyphicon glyphicon-glass custom”></i> <i class=”glyphicon glyphicon-music custom”></i> <i class=”glyphicon glyphicon-search custom”></i> <i class=”glyphicon glyphicon-heart custom”></i> <i class=”glyphicon glyphicon-star custom”></i> <i class=”glyphicon glyphicon-star-empty custom”></i> <i class=”glyphicon glyphicon-user custom”></i> <i class=”glyphicon glyphicon-film custom”></i> <i class=”glyphicon glyphicon-th-large custom”></i> <i class=”glyphicon glyphicon-th custom”></i> <i class=”glyphicon glyphicon-th-list custom”></i> <i class=”glyphicon glyphicon-ok custom”></i> <i class=”glyphicon glyphicon-remove custom”></i> <i class=”glyphicon glyphicon-zoom-in custom”></i> <i class=”glyphicon glyphicon-zoom-out custom”></i> <i class=”glyphicon glyphicon-off custom”></i> <i class=”glyphicon glyphicon-signal custom”></i> <i class=”glyphicon glyphicon-cog custom”></i> <i class=”glyphicon glyphicon-trash custom”></i> <i class=”glyphicon glyphicon-home custom”></i> <i class=”glyphicon glyphicon-file custom”></i> <i class=”glyphicon glyphicon-time custom”></i> <i class=”glyphicon glyphicon-road custom”></i> <i class=”glyphicon glyphicon-download-alt custom”></i> <i class=”glyphicon glyphicon-download custom”></i> <i class=”glyphicon glyphicon-upload custom”></i> <i class=”glyphicon glyphicon-inbox custom”></i> <i class=”glyphicon glyphicon-play-circle custom”></i> <i class=”glyphicon glyphicon-repeat custom”></i> <i class=”glyphicon glyphicon-refresh custom”></i> <i class=”glyphicon glyphicon-list-alt custom”></i> <i class=”glyphicon glyphicon-lock custom”></i> <i class=”glyphicon glyphicon-flag custom”></i> <i class=”glyphicon glyphicon-headphones custom”></i> <i class=”glyphicon glyphicon-volume-off custom”></i> <i class=”glyphicon glyphicon-volume-down custom”></i> <i class=”glyphicon glyphicon-volume-up custom”></i> <i class=”glyphicon glyphicon-qrcode custom”></i> <i class=”glyphicon glyphicon-barcode custom”></i> <i class=”glyphicon glyphicon-tag custom”></i> <i class=”glyphicon glyphicon-tags custom”></i> <i class=”glyphicon glyphicon-book custom”></i> <i class=”glyphicon glyphicon-bookmark custom”></i> <i class=”glyphicon glyphicon-print custom”></i> <i class=”glyphicon glyphicon-camera custom”></i> <i class=”glyphicon glyphicon-font custom”></i> <i class=”glyphicon glyphicon-bold custom”></i> <i class=”glyphicon glyphicon-italic custom”></i> <i class=”glyphicon glyphicon-text-height custom”></i> <i class=”glyphicon glyphicon-text-width custom”></i> <i class=”glyphicon glyphicon-align-left custom”></i> <i class=”glyphicon glyphicon-align-center custom”></i> <i class=”glyphicon glyphicon-align-right custom”></i> <i class=”glyphicon glyphicon-align-justify custom”></i> <i class=”glyphicon glyphicon-list custom”></i> <i class=”glyphicon glyphicon-indent-left custom”></i> <i class=”glyphicon glyphicon-indent-right custom”></i> <i class=”glyphicon glyphicon-facetime-video custom”></i> <i class=”glyphicon glyphicon-picture custom”></i> <i class=”glyphicon glyphicon-map-marker custom”></i> <i class=”glyphicon glyphicon-adjust custom”></i> <i class=”glyphicon glyphicon-tint custom”></i> <i class=”glyphicon glyphicon-edit custom”></i> <i class=”glyphicon glyphicon-share custom”></i> <i class=”glyphicon glyphicon-check custom”></i> <i class=”glyphicon glyphicon-move custom”></i> <i class=”glyphicon glyphicon-step-backward custom”></i> <i class=”glyphicon glyphicon-fast-backward custom”></i> <i class=”glyphicon glyphicon-backward custom”></i> <i class=”glyphicon glyphicon-play custom”></i> <i class=”glyphicon glyphicon-pause custom”></i> <i class=”glyphicon glyphicon-stop custom”></i> <i class=”glyphicon glyphicon-forward custom”></i> <i class=”glyphicon glyphicon-fast-forward custom”></i> <i class=”glyphicon glyphicon-step-forward custom”></i> <i class=”glyphicon glyphicon-eject custom”></i> <i class=”glyphicon glyphicon-chevron-left custom”></i> <i class=”glyphicon glyphicon-chevron-right custom”></i> <i class=”glyphicon glyphicon-plus-sign custom”></i> <i class=”glyphicon glyphicon-minus-sign custom”></i> <i class=”glyphicon glyphicon-remove-sign custom”></i> <i class=”glyphicon glyphicon-ok-sign custom”></i> <i class=”glyphicon glyphicon-question-sign custom”></i> <i class=”glyphicon glyphicon-info-sign custom”></i> <i class=”glyphicon glyphicon-screenshot custom”></i> <i class=”glyphicon glyphicon-remove-circle custom”></i> <i class=”glyphicon glyphicon-ok-circle custom”></i> <i class=”glyphicon glyphicon-ban-circle custom”></i> <i class=”glyphicon glyphicon-arrow-left custom”></i> <i class=”glyphicon glyphicon-arrow-right custom”></i> <i class=”glyphicon glyphicon-arrow-up custom”></i> <i class=”glyphicon glyphicon-arrow-down custom”></i> <i class=”glyphicon glyphicon-share-alt custom”></i> <i class=”glyphicon glyphicon-resize-full custom”></i> <i class=”glyphicon glyphicon-resize-small custom”></i> <i class=”glyphicon glyphicon-exclamation-sign custom”></i> <i class=”glyphicon glyphicon-gift custom”></i> <i class=”glyphicon glyphicon-leaf custom”></i> <i class=”glyphicon glyphicon-fire custom”></i> <i class=”glyphicon glyphicon-eye-open custom”></i> <i class=”glyphicon glyphicon-eye-close custom”></i> <i class=”glyphicon glyphicon-warning-sign custom”></i> <i class=”glyphicon glyphicon-plane custom”></i> <i class=”glyphicon glyphicon-calendar custom”></i> <i class=”glyphicon glyphicon-random custom”></i> <i class=”glyphicon glyphicon-comment custom”></i> <i class=”glyphicon glyphicon-magnet custom”></i> <i class=”glyphicon glyphicon-chevron-up custom”></i> <i class=”glyphicon glyphicon-chevron-down custom”></i> <i class=”glyphicon glyphicon-retweet custom”></i> <i class=”glyphicon glyphicon-shopping-cart custom”></i> <i class=”glyphicon glyphicon-folder-close custom”></i> <i class=”glyphicon glyphicon-folder-open custom”></i> <i class=”glyphicon glyphicon-resize-vertical custom”></i> <i class=”glyphicon glyphicon-resize-horizontal custom”></i> <i class=”glyphicon glyphicon-hdd custom”></i> <i class=”glyphicon glyphicon-bullhorn custom”></i> <i class=”glyphicon glyphicon-bell custom”></i> <i class=”glyphicon glyphicon-certificate custom”></i> <i class=”glyphicon glyphicon-thumbs-up custom”></i> <i class=”glyphicon glyphicon-thumbs-down custom”></i> <i class=”glyphicon glyphicon-hand-right custom”></i> <i class=”glyphicon glyphicon-hand-left custom”></i> <i class=”glyphicon glyphicon-hand-up custom”></i> <i class=”glyphicon glyphicon-hand-down custom”></i> <i class=”glyphicon glyphicon-circle-arrow-right custom”></i> <i class=”glyphicon glyphicon-circle-arrow-left custom”></i> <i class=”glyphicon glyphicon-circle-arrow-up custom”></i> <i class=”glyphicon glyphicon-circle-arrow-down custom”></i> <i class=”glyphicon glyphicon-globe custom”></i> <i class=”glyphicon glyphicon-wrench custom”></i> <i class=”glyphicon glyphicon-tasks custom”></i> <i class=”glyphicon glyphicon-filter custom”></i> <i class=”glyphicon glyphicon-briefcase custom”></i> <i class=”glyphicon glyphicon-fullscreen custom”></i> <i class=”glyphicon glyphicon-dashboard custom”></i> <i class=”glyphicon glyphicon-paperclip custom”></i> <i class=”glyphicon glyphicon-heart-empty custom”></i> <i class=”glyphicon glyphicon-link custom”></i> <i class=”glyphicon glyphicon-phone custom”></i> <i class=”glyphicon glyphicon-pushpin custom”></i> <i class=”glyphicon glyphicon-usd custom”></i> <i class=”glyphicon glyphicon-gbp custom”></i> <i class=”glyphicon glyphicon-sort custom”></i> <i class=”glyphicon glyphicon-sort-by-alphabet custom”></i> <i class=”glyphicon glyphicon-sort-by-alphabet-alt custom”></i> <i class=”glyphicon glyphicon-sort-by-order custom”></i> <i class=”glyphicon glyphicon-sort-by-order-alt custom”></i> <i class=”glyphicon glyphicon-sort-by-attributes custom”></i> <i class=”glyphicon glyphicon-sort-by-attributes-alt custom”></i> <i class=”glyphicon glyphicon-unchecked custom”></i> <i class=”glyphicon glyphicon-expand custom”></i> <i class=”glyphicon glyphicon-collapse-down custom”></i> <i class=”glyphicon glyphicon-collapse-up custom”></i> <i class=”glyphicon glyphicon-log-in custom”></i> <i class=”glyphicon glyphicon-flash custom”></i> <i class=”glyphicon glyphicon-log-out custom”></i> <i class=”glyphicon glyphicon-new-window custom”></i> <i class=”glyphicon glyphicon-record custom”></i> <i class=”glyphicon glyphicon-save custom”></i> <i class=”glyphicon glyphicon-open custom”></i> <i class=”glyphicon glyphicon-saved custom”></i> <i class=”glyphicon glyphicon-import custom”></i> <i class=”glyphicon glyphicon-export custom”></i> <i class=”glyphicon glyphicon-send custom”></i> <i class=”glyphicon glyphicon-floppy-disk custom”></i> <i class=”glyphicon glyphicon-floppy-saved custom”></i> <i class=”glyphicon glyphicon-floppy-remove custom”></i> <i class=”glyphicon glyphicon-floppy-save custom”></i> <i class=”glyphicon glyphicon-floppy-open custom”></i> <i class=”glyphicon glyphicon-credit-card custom”></i> <i class=”glyphicon glyphicon-transfer custom”></i> <i class=”glyphicon glyphicon-cutlery custom”></i> <i class=”glyphicon glyphicon-header custom”></i> <i class=”glyphicon glyphicon-compressed custom”></i> <i class=”glyphicon glyphicon-earphone custom”></i> <i class=”glyphicon glyphicon-phone custom”></i> <i class=”glyphicon glyphicon-tower custom”></i> <i class=”glyphicon glyphicon-stats custom”></i> <i class=”glyphicon glyphicon-sd-video custom”></i> <i class=”glyphicon glyphicon-hd-video custom”></i> <i class=”glyphicon glyphicon-subtitles custom”></i> <i class=”glyphicon glyphicon-sound-stereo custom”></i> <i class=”glyphicon glyphicon-sound-dolby custom”></i> <i class=”glyphicon glyphicon-sound-5-1 custom”></i> <i class=”glyphicon glyphicon-sound-6-1 custom”></i> <i class=”glyphicon glyphicon-sound-7-1 custom”></i> <i class=”glyphicon glyphicon-copyright-mark custom”></i> <i class=”glyphicon glyphicon-registration-mark custom”></i> <i class=”glyphicon glyphicon-cloud-download custom”></i> <i class=”glyphicon glyphicon-cloud-upload custom”></i> <i class=”glyphicon glyphicon-tree-conifer custom”></i> <i class=”glyphicon glyphicon-tree-deciduous custom”></i> Print Page Previous Next Advertisements ”;

Material – Alert Icons

Material – Alert Icons ”; Previous Next This chapter explains the usage of Google”s (Material) Alert 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> <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> The following table contains the usage and results of Google”s (Material) Alert 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”>add_alert</i> add_alert <i class=”material-icons custom”>error</i> error <i class=”material-icons custom”>error_outline</i> error_outline <i class=”material-icons custom”>warning</i> warning Print Page Previous Next Advertisements ”;

Material – Content Icons

Material – Content Icons ”; Previous Next This chapter explains the usage of Google”s (Material) Content 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> <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> The following table contains the usage and results of Google”s (Material) Content 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”>add</i> add <i class=”material-icons custom”>add_box</i> add_box <i class=”material-icons custom”>add_circle</i> add_circle <i class=”material-icons custom”>add_circle_outline</i> add_circle_outline <i class=”material-icons custom”>archive</i> archive <i class=”material-icons custom”>backspace</i> backspace <i class=”material-icons custom”>block</i> block <i class=”material-icons custom”>clear</i> clear <i class=”material-icons custom”>content_copy</i> content_copy <i class=”material-icons custom”>content_cut</i> content_cut <i class=”material-icons custom”>content_paste</i> content_paste <i class=”material-icons custom”>create</i> create <i class=”material-icons custom”>drafts</i> drafts <i class=”material-icons custom”>filter_list</i> filter_list <i class=”material-icons custom”>flag</i> flag <i class=”material-icons custom”>font_download</i> font_download <i class=”material-icons custom”>forward</i> forward <i class=”material-icons custom”>gesture</i> gesture <i class=”material-icons custom”>inbox</i> inbox <i class=”material-icons custom”>link</i> link <i class=”material-icons custom”>mail</i> mail <i class=”material-icons custom”>markunread</i> markunread <i class=”material-icons custom”>redo</i> redo <i class=”material-icons custom”>remove</i> remove <i class=”material-icons custom”>remove_circle</i> remove_circle <i class=”material-icons custom”>remove_circle_outline</i> remove_circle_outline <i class=”material-icons custom”>reply</i> reply <i class=”material-icons custom”>reply_all</i> reply_all <i class=”material-icons custom”>report</i> report <i class=”material-icons custom”>save</i> save <i class=”material-icons custom”>select_all</i> select_all <i class=”material-icons custom”>send</i> send <i class=”material-icons custom”>sort</i> sort <i class=”material-icons custom”>text_format</i> text_format <i class=”material-icons custom”>stay_current_portrait</i> stay_current_portrait <i class=”material-icons custom”>undo</i> undo Print Page Previous Next Advertisements ”;