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