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