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