Putting hyperlinked and non-hyperlinked text in one line, centered, on .php [closed]

This isn’t really a WordPress specific question but here’s what you’ll likely want to do. Notice also the example below is using the PHP date function which will dynamically update the year:

style.css

.copyright {
  color: #ffffff;
  display: table;
  margin: 0 auto;
}
.copyright a {
  color: #0080ff;
}

footer.php

<div class="copyright">
  Copyright &copy; <?php echo date('Y'); ?> EXAMPLE | 
  <a href="#">Privacy Policy</a> | 
  <a href="#">Terms of Use</a>
</div>