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 ”;
Category: web Icons
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 ”;
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 ”; 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 – 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 ”;
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 – Toggle Icons
Material – Toggle Icons ”; Previous Next This chapter explains the usage of Google”s (Material) Toggle 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) Toggle 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”>check_box</i> check_box <i class=”material-icons custom”>check_box_outline_blank</i> check_box_outline_blank <i class=”material-icons custom”>indeterminate_check_box</i> indeterminate_check_box <i class=”material-icons custom”>radio_button_checked</i> radio_button_checked <i class=”material-icons custom”>radio_button_unchecked</i> radio_button_unchecked <i class=”material-icons custom”>star</i> star <i class=”material-icons custom”>star_border</i> star_border <i class=”material-icons custom”>star_half</i> star_half Print Page Previous Next Advertisements ”;
Material – Navigation Icons
Material – Navigation Icons ”; Previous Next This chapter explains the usage of Google”s (Material) Navigation 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) Navigation 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”>apps</i> apps <i class=”material-icons custom”>arrow_back</i> arrow_back <i class=”material-icons custom”>arrow_drop_down</i> arrow_drop_down <i class=”material-icons custom”>arrow_drop_down_circle</i> arrow_drop_down_circle <i class=”material-icons custom”>arrow_drop_up</i> arrow_drop_up <i class=”material-icons custom”>arrow_forward</i> arrow_forward <i class=”material-icons custom”>cancel</i> cancel <i class=”material-icons custom”>check</i> check <i class=”material-icons custom”>chevron_left</i> chevron_left <i class=”material-icons custom”>chevron_right</i> chevron_right <i class=”material-icons custom”>close</i> close <i class=”material-icons custom”>expand_less</i> expand_less <i class=”material-icons custom”>expand_more</i> expand_more <i class=”material-icons custom”>fullscreen</i> fullscreen <i class=”material-icons custom”>fullscreen_exit</i> fullscreen_exit <i class=”material-icons custom”>menu</i> menu <i class=”material-icons custom”>more_horiz</i> more_horiz <i class=”material-icons custom”>more_vert</i> more_vert <i class=”material-icons custom”>refresh</i> refresh Print Page Previous Next Advertisements ”;
Web Icons – Useful Resources
Web Icons – Useful Resources ”; Previous Next The following resources contain additional information on Web Icons. Please use them to get more in-depth knowledge on this. Useful Video Courses TKinter Course – Build Python GUI Apps 49 Lectures 4 hours John Elder More Detail Adobe Xd Course – UI / UX Design, Prototype And Getting A Job 128 Lectures 11.5 hours Aleksandar Cucukovic More Detail Adobe Xd Animation – Complete Guide From Icons To UI 104 Lectures 11.5 hours Aleksandar Cucukovic More Detail How To Use Android: Beginners Guide for Smartphones, Tablets 98 Lectures 8 hours Kopias Csaba More Detail Learn Web Design From Scratch 68 Lectures 9.5 hours Marwa Radwan More Detail Create Twitter Clone Using Laravel 82 Lectures 5 hours Mustafa Alawi More Detail Print Page Previous Next Advertisements ”;
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 ”;