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