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