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