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