In: Computer Science
Create, test, and validate an HTML document for yourself, including your name, address, and email address. If you are a student, you must include your major and your grade level. This document must use several headings and <em>, <strong>, <hr />, <p>, and <br /> tags.
HTML code:
<!DOCTYPE html>
<html lang="en-US">
<head>
   <title>Home</title>
   <meta charset="UTF-8">
</head>
<body>
       <h1 style="text-align:
center;">About Me</h1>
       <p style="text-align:
center;">You'll get to know me here</p><br />
       <hr />
       <h4>Name</h4>
      
<p><em><strong>Sunny
Sebastian</strong></em></p>
       <hr/>
       <h4>Address</h4>
      
<p><em>Baltimore</em></p>
       <hr/>
       <h4>Email</h4>
      
<p><em>[email protected]</em></p>
       <hr/>
       <h4>Major</h4>
       <p><em>Computer
Science</em></p>
       <hr/>
       <h4>Grade
Level</h4>
       <p><em>Grade
12</em></p>
       <hr/>
</body>
</html>

Explanation:
