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