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