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