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