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