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