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