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