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