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