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