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