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