I cant get the text to stay in the div
the text wont stay in the div: html: <!DOCTYPE HTML> <html> <head> <link rel="stylesheet" type="text/css" href="Learn.css"/> </head> <body> <div id="NavBar"> <a href="https://www.youtube.com/channel/UC-kNQZyspQY1OUKMalbx_uQ"> <img src="https://s-media-cache-ak0.pinimg.com/originals/dc/4d/23/dc4d238b3da6d02bcc5080b58fd5c009.jpg" id="Logo"/></a> <p id="Title">ANGEL ARMY WEBPAGE</p> </div> <script src="Learn.js"></script> </body> </html> css: #NavBar { background-color: #c4c5c6; width: 1837px; height: 100px; } #Logo { width: 100px; height: 100px; } #Title { font-size: 50px; font-family: "Times New Romans", "serif"; text-align: center; margin: 0px; width: 1437px; height: 58px; } PLEASE HEELLLP