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