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