0

The code is:

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    display: none;
}

h1 {
    display: block !important;
    color: black !important;
    text-align: center !important;
    width: 100% !important;
}

p {
    display: block !important;
    color: black !important;
    text-align: justify !important;
}

I ran out of ideas what can be the problem. I think it's a very basic misitake I did just i cant see where.

Davoda 1
  • 3
  • 1

1 Answers1

1

Your body has display: none . Since the body is a wrapper for your other elements, they will never show.

Chris L
  • 129
  • 5