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