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