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