I am using the tag <h1>
in HTML and I'm trying to put the text in the middle of the webpage, no matter how much you change the size of the webpage. Basically so the text is responsive to the size of the webpage as well. Here is what I mean:
In my css page, I tried to do the following:
h1 {
text-align: center;
display: table-cell;
vertical-align: middle;
}
However, this didn't work. How would I do this?