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