I am having trouble changing the font in my CSS to what I want it to be.
body{
background-color:#a8a7a7;
color:#C50909;
font-family: main, Calibri;
text-align:center;
}
@font-face{
font-family: main;
src: url('fonts/RegencieLight.ttf');
}
Even though my CSS is properly linked to my HTML and all other aspects are working fine. If anyone has a solution, I would greatly appreciate it. Thank you.