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