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