class article:
def __init__(self, title, subtitle_1, subtitle_2, subtitle_3):
self.title = title
self.subtitle_1 = subtitle_1
self.subtitle_2 = subtitle_2
self.subtitle_3 = subtitle_3
def format_html(self):
return f’
{self.title}
{self.subtitle_1}
Have you ever wondered what secrets your favorite celebrities keep from their fans? Well, wonder no more! Celebrity Secrets Revealed: The Inside Scoop is here to spill some juicy, insider information. Let’s take a look at some of the hidden facts and stories behind our favorite stars.
{self.subtitle_2}
It’s no secret that many famous actors got their start on Broadway, but did you know that Hugh Jackman used to work as a party clown? That’s right. According to an interview with The Hollywood Reporter, Jackman admitted that he used to dress up as “Wolverine the Clown” for children’s birthday parties. Who knew?
{self.subtitle_3}
Selena Gomez has been in the public eye since she was a child, but she still manages to keep some things hidden from her fans. In an interview with Vogue, Gomez revealed that one of her guilty pleasures is watching The Bachelor. “Just kidding…you know what’s funny? I’ve gotten into the show Cheaters before. That’s like my Netflix binge.”
So there you have it, some inside scoop on what your favorite celebrities are really like. Stay tuned for more Celebrity Secrets Revealed in the future!
{self.subtitle_4}
Famous or not, everyone has a story to tell. Whether you’re a fan of Hollywood blockbuster movies or prefer more low-key productions, there’s always something new and fascinating to learn about the people behind the scenes. Maybe next time you tune into the latest awards ceremony or start following a new celebrity on social media, you’ll think twice about how much of their secrets have been revealed.
‘
title = “Celebrity Secrets Revealed: The Inside Scoop”
subtitle_1 = “Get Ready to Be Shocked”
subtitle_2 = “Hugh Jackman’s Unexpected Beginnings as a Clown”
subtitle_3 = “Selena Gomez Confesses Her Guilty Pleasure”
subtitle_4 = “Behind Every Celebrity: A Fascinating Story”
my_article = article(title, subtitle_1, subtitle_2, subtitle_3, subtitle_4)
print(my_article.format_html())