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