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