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