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