5 Web Scraping and APIs Flashcards
What is meant by HTML being a “markup” language?
This it includes both the content you see on the screen (the text) along with built in instructions (the markup) for how the browser should show it. These instructions come in tags, which are wrapped in arrow brackets (<>).
What does <p> stand for in HTML?
Paragraph
<p>This text is a paragraph.</p>
What does <div> stand for in HTML?
this doesn’t really do anything directly, but they’re a way for web designer’s to divide up their HTML however they want to assign classes and ids to particular sections
What does <table> stand for in HTML?
tag that specifies the start of a table
What does <th> stand for in HTML?
Header in a table
What does <tr> stand for in HTML?
Denotes a table row
What does <td> stand for in HTML?
Table data
What does <a> stand for in HTML?</a>
link, always includes the attribute href, which specifies where the browser should go when you click on it