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