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