Use on the webTotal Use [ 3152 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/90269727ef9e770a9b1196fe5aa56038?family=HancockParkLaser+Park+Bold+Laser%3A2%2F3%2F89+3%3A53%3A05+PM" 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/90269727ef9e770a9b1196fe5aa56038?family=HancockParkLaser+Park+Bold+Laser%3A2%2F3%2F89+3%3A53%3A05+PM);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "HancockParkLaser Park Bold Laser:2/3/89 3:53:05 PM";
src: url("https://db.onlinewebfonts.com/t/90269727ef9e770a9b1196fe5aa56038.eot");
src: url("https://db.onlinewebfonts.com/t/90269727ef9e770a9b1196fe5aa56038.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/90269727ef9e770a9b1196fe5aa56038.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/90269727ef9e770a9b1196fe5aa56038.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/90269727ef9e770a9b1196fe5aa56038.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/90269727ef9e770a9b1196fe5aa56038.svg#HancockParkLaser Park Bold Laser:2/3/89 3:53:05 PM")format("svg");
}
2CSS rules to specify fonts
font-family: "HancockParkLaser Park Bold Laser:2/3/89 3:53:05 PM";