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