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