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