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