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