I'm trying to create a small "menu" on the right where you can navigate to other pages, but for some reason, it hangs lower than the left-aligned text. I want them to be on the same level.
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<header>
<div style="display:inline-block;">
<p align = "left">
Test
</p>
</div>
<div style="display:inline-block;">
<p align = "right">
<a href="testOne.html">One</a> |
<a href="testTwo.html">Two</a>
</p>
</div>
</header>
</body>
</html>
I would ideally like something like this (same level with a black bar underneath):

However I'm trying to achieve it in pure HTML, without using CSS or whatnot.

