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