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