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