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