Use on the webTotal Use [ 5173 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ad261822100bf2d682beea3f17099650?family=Poppins+ExtraBold" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/ad261822100bf2d682beea3f17099650?family=Poppins+ExtraBold);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Poppins ExtraBold";
src: url("https://db.onlinewebfonts.com/t/ad261822100bf2d682beea3f17099650.eot");
src: url("https://db.onlinewebfonts.com/t/ad261822100bf2d682beea3f17099650.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ad261822100bf2d682beea3f17099650.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ad261822100bf2d682beea3f17099650.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ad261822100bf2d682beea3f17099650.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ad261822100bf2d682beea3f17099650.svg#Poppins ExtraBold")format("svg");
}
2CSS rules to specify fonts
font-family: "Poppins ExtraBold";