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