i have an html file something like this :
<html>
<head>
<css files>
<js files>
// maybe other things in header
</head>
<body>
// body contents ..
</body>
</html>
now i want to get header contents :
<css files>
<js files>
// maybe other things in header
how to get this section?
something like :
string header = HTMLFile.header;