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