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