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