+ 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
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
+ 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
0
With an image can be that i.e. looks as follows:
https://code.sololearn.com/WSLZPpBIFgr7/?ref=app