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