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