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