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