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