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