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