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