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