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