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