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