I am trying to write semantic HTML for a business card. I want to show the name, title, email and phone number on the markup.
<div id="bussinesscardcontainer">
<section class="Details">
<span> Name :ABC</span>
<span> Title:XYZ </span>
</section>
<footer class="contact">
<span class="email"> Email:abc@abc.com</span>
<span class="phonenumber">Mobile:123-123-123</span>
</footer>
</div>
I just want to understand is my markup sematically right or not.
This markup would end up looking as Difficulty in Designing Business card using CSS