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