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