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