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