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