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