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