You click "Create Content." Drupal asks you what kind. You fill in the fields. You save it. A page appears.
You think you just built a web page.
You didn't.
What you built is a record. Drupal calls it a node. Understanding the difference between a record and a page is possibly the single most useful thing you can take away from this entire book, so let's stay here for a moment.
Think about a spreadsheet. You have used a spreadsheet. Everyone has used a spreadsheet. A spreadsheet has rows and columns and sheets. Each row is one thing — one customer, one event, one product, one article. Each column is one piece of information about that thing — a name, a date, a size, a status, a shoe size. The row is the record. The columns are called fields in Drupal.
If we are thinking spread sheets - The sheet is the content type, the fields in a content type are the columns in your spreadsheet. A Drupal Node is a row in your spreadsheet.
That is the long and short of the whole story.
When you created that content, you weren't painting a page. You were adding a row to a very sophisticated database that happens to know how to show you a page when you need one. The page is the default view of the record. It is not the record itself.
This distinction matters enormously, and here is why.
Gerald's nephew gave Gerald a website. On that website, each page was a page — the content and the display were baked together. To change how something looks he had to touch the content. To reorganize the site he had to touch the content. The content and the page were the same thing, which feels simple until the day you need them to be different things.
In Drupal they are always different things.
That same node — that same row in the spreadsheet — can be displayed in any format you need without touching the record itself. A card in a grid. A row in a table. An entry in a calendar. A pin on a map. A line in an RSS feed. An item in an API response. All of that from the same node, the same record, the same data sitting quietly in the database being useful in as many ways as you ask it to be.
There is a concept called headless Drupal - I don't recommend it - but a Drupal database is used as a back end for multiple different front end displays - and perhaps not even a website.
As we continue our Drupal Journey remember - it's just a fancy spreadsheet when ever you start to get confused.