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