Using the database you have in local storage for your professional history, follow the ETL process.
- Extract the professional history data
- Transform each position into an
<article> element string.
- Load that string into the DOM
You may want to create a section element in your HTML file to contain each article.
<body>
<section id="professional-history">
// Each new <article> will be inserted here.
</section>
</body>