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