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