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