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