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