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