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