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