-4
In better practices this way of making tags available is not very recommended, since it corresponds to a menu. You should use the UL tag and within each LI put your links, tag A. This is because it ensures a comprehensible structure if css is not loaded for some reason. The idea is that the structure is understandable. I advise to use List and format it instead of link.
ul {
list-style-type: none;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
text-align: center;
padding: 16px;
text-decoration: none;
}
.menua {
 text-align: right;
}
will solve your problem, but I’m voting to close because your question is not in the site quality standard. Try to put your code in text form and not in image form, it makes it easy for someone to copy your code and answer you etc– hugocsl