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