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