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