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