Use on the webTotal Use [ 5303 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/17522b31d10e26fe22bcf25c632a55ad?family=Selfie-Regular" 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/17522b31d10e26fe22bcf25c632a55ad?family=Selfie-Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Selfie-Regular";
src: url("https://db.onlinewebfonts.com/t/17522b31d10e26fe22bcf25c632a55ad.eot");
src: url("https://db.onlinewebfonts.com/t/17522b31d10e26fe22bcf25c632a55ad.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/17522b31d10e26fe22bcf25c632a55ad.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/17522b31d10e26fe22bcf25c632a55ad.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/17522b31d10e26fe22bcf25c632a55ad.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/17522b31d10e26fe22bcf25c632a55ad.svg#Selfie-Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Selfie-Regular";