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