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