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