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