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