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