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