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