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