Assessment Marking up a letter

I did all every point, but I believe I did something wrong on Time Element cant moved to right!!
I need your help please
https://codepen.io/khalidsbalawi/pen/RwPXRVe?editors=1100

https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Marking_up_a_letter

Hi @KhalidS, and thanks for sending your code in!

This is mostly really good; the only problem is the address section, as you said. The issue with the <time> element is that it is an inline element by default, so therefore doesn’t span across the full width of the page. Since it is sat on the left hand side of the page, the class won’t make it align to the right. This can be fixed by wrapping it in a block level element like a <p>, and putting the class on there instead.

In addition, <address> is a block-level element, so it doesn’t need a <p> wrapped around it. and you don’t need so many <br> elements — <p> elements create their own line breaks by default.

I made the fixes described above in the following code snippet:

<address class="sender-column">
  <strong>Dr. Eleanor Gaye </strong><br>
  Awesome Science faculty<br>
  University of Awesome<br>
  Bobtown, CA 99999,<br>
  USA<br>
  <strong>Tel:</strong> 123-456-7890<br>
  <strong>Email:</strong> no_reply@example.com
</address>

<p class="sender-column"><time datetime="2016-01-20" > 20 January 2016 </time></p>

<address>
  <strong> Miss Eileen Dover </strong><br>
  4321 Cliff Top Edge<br>
  Dover, CT9 XXX<br>
  UK
</address>

Apart from that, great work, and well done!