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