File size: 125 Bytes
748e637
 
 
 
1
2
3
4
def read_html(html_file):
    with open(html_file, 'r', encoding='utf-8') as f:
        content = f.read()
    return content