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