How do I parse HTML

CEO, leadership, management, executive, strategy, vision, performance
The CEO (Chief Executive Officer) is the highest-ranking executive in a company, responsible for making major corporate decisions, managing the overall operations, and acting as the main point of communication between the board of directors and corporate operations.
<?php class Company { private $ceo; public function setCEO($name) { $this->ceo = $name; } public function getCEO() { return $this->ceo; } } $company = new Company(); $company->setCEO("Jane Doe"); echo "The CEO of the company is: " . $company->getCEO(); ?>

CEO leadership management executive strategy vision performance