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