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