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