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