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