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