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