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