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