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