Hi for my case can I get the value of a h2 title from a website to have it in a variable?
For example, a web that is structured as follows, how would you capture that word Layout
For example, a web that is structured as follows, how would you capture that word Layout
Code:
<!DOCTYPE html> <html lang="en"> <head> </head> <body> <h2>Layout</h2> <p>In this example, we have created a header, two columns/boxes and a footer. On smaller screens, the columns will stack on top of each other.</p> <p>Resize the browser window to see the responsive effect.</p> </body> </html>
Comment