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