import urllib.request
import re

url = "https://charity-boat-race.base44.app/"
req = urllib.request.Request(url, headers={'User-Agent': 'Mozilla/5.0'})
try:
    with urllib.request.urlopen(req) as response:
        html = response.read().decode('utf-8')
        
        # print body class
        match = re.search(r'<body[^>]*>', html)
        if match:
            print("BODY TAG:")
            print(match.group(0))
            
except Exception as e:
    print(f"Error: {e}")
