find the section for body{}, click the color box next to color, and change the text color to anything you like.
find the html, body { section, change the font-family from Sans-Serif to Serif or fantasy.
Let’s play
HTML - Under the Elements tab:
Use the selector gadget (top left corner of the Developer Tools) to select the title “United States” and see the HTML structure highlighted in the Elements tab.
Change the text to “United States of America” and hit Enter to see the change on the webpage. (This change is only temporary and will be lost when you refresh the page.)
Let’s scroll down to a table: Demographics > Population Change the values in the table cell.
Basic table structure
An HTML table with a <tbody> element. The table is defined rowwise: <tr> defines a table row, <td> defines a table cell (data):
Every HTML page must be in an <html> element, and it must have two children: <head>, which contains document metadata like the page title, and <body>, which contains the content you see in the browser.
Block tags like <h1> (heading 1), <p> (paragraph), <table> (table), and <ol> (ordered list) form the overall structure of the page.
CSS
CSS is short for Cascading Style Sheets, and is a tool for defining the visual styling of HTML documents.
CSS selectors define patterns for locating HTML elements, and are useful for scraping because they provide a concise way of describing which elements you want to extract.
Web scraping with rvest
Toy example
html <-minimal_html("<head><title></title></head><body><h1 id='welcome'>Page title</h1><p>Welcome to HTML-CSS-JS.com</p><p>Online HTML, CSS and JavaScript editor with instant preview.</p><table><tr><td>Name</td><td>Region</td><td>Population</td></tr><tr><td>New York</td><td>Northeast</td><td>19,940,274</td></tr></table></body>")html