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