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