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