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