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