Hello, please where and how add i icon in my html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Hello, please where and how add i icon in my html

Where and how can i add icons of social media in my html file

10th Sep 2020, 1:06 PM
Mul Franck
3 Answers
+ 3
Put this in head tag <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> And use this <i class="material-icons">camera</i> at place where you want to add icons.where camera is name of icon. You can find more icon name here https://materializecss.com/icons.html Just replace camera with that name . add is
10th Sep 2020, 3:14 PM
Divya Mohan
Divya Mohan - avatar
+ 2
You can add social media icons by using font awesome icons Add this in the head tag <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> Then you type in the icon code in the body tag like <i class= 'fa fa-facebook'></i> Or <i class= 'fa fa-whatsapp'></i> Or any other social media icon code
11th Sep 2020, 9:26 AM
Kayla Onobun (QOG)
Kayla Onobun (QOG) - avatar
0
With an image can be that i.e. looks as follows: https://code.sololearn.com/WSLZPpBIFgr7/?ref=app
10th Sep 2020, 3:10 PM
JaScript
JaScript - avatar