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