My HTML Article My HTML Article This is the main content of my article. This is a paragraph with a link example.com. ``` Replace the content between the and tags with your own content. 8. Add CSS styling: ```css body { font-family: Arial, sans-serif; line-height: 1.5; color: #333; background-color: #f0f0f0; padding: 20px; } h1 { font-size: 24px; margin: 0; color: #333; } p { font-size: 16px; line-height: 1.5; margin: 0 0 1em; color: #333; } img { width: 100%; display: block; margin-bottom: 20px; } video { width: 100%; display: block; margin-bottom: 20px; max-width: 500px; } a { color: #0074D9; text-decoration: underline; } @media (max-width: 768px) { h1 { font-size: 20px; } p { font-size: 14px; } img { width: 100%; display: block; margin-bottom: 10px; } video { width: 100%; display: block; margin-bottom: 10px; max-width: 100%; } } ``` 9. Add JavaScript functionality: ```javascript const myArticle = document.getElementById('myArticle'); myArticle.addEventListener('mouseover', function() { myArticle.style.backgroundColor = '#ffcccc'; myArticle.style.color = '#333'; myArticle.style.cursor = 'pointer'; }); myArticle.addEventListener('mouseout', function() { myArticle.style.backgroundColor = '#f0f0f0'; myArticle.style.color = '#333'; myArticle.style.cursor = 'default'; }); const myLink = document.querySelector('a'); myLink.addEventListener('click', function() { window.open(myLink.href); }); ```