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