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