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