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