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