` means the
+column will start at column 9 and span 8 columns when the large (lg) breakpoint
+is active. large breakpoint.
+
+https://carbon-elements.netlify.app/grid/examples/css-grid/
+
+We've included the designs for this tutorial app in the `design.figma` file
+found as a top-level file in the `carbon-tutorial` repository. But, if you don't
+have Figma installed and available to inspect the design, we'll provide
+screenshots.
+
+![Landing page grid](../shared/step-2/images/landing-layout.png)
+
+
Landing page grid
+
+
+
+**Pro tip:** `SHIFT-G` toggles the layout in Figma.
+
+
+
+## Build landing page
+
+We'll start adding HTML elements and components by row.
+
+### First row
+
+
+
+
+![Banner vertical spacing](../shared/step-2/images/landing-r1-spacing.png)
+
+Banner vertical spacing
+
+
+
+
+In our first row we'll need a `Breadcrumb` component. First, let's import the
+components we need.
+
+```javascript path=main.js
+import '@carbon/web-components/es/components/breadcrumb/index';
+```
+
+We can now add our component to the first row, replace the content of the `div`
+with class `page-landing__banner` with:
+
+```html path=index.html
+
+
+ Getting started
+
+
+
Design & build with Carbon
+```
+
+### Second row
+
+In our second row we'll need `Tabs` and `Button` components. Add the following
+import:
+
+```javascript path=main.js
+import '@carbon/web-components/es/components/tabs/index';
+```
+
+The tabs come next going inside `page-landing__r2` and before the sub
+`cds--subgrid`.
+
+```html path=index.html
+
+ About
+ Design
+ Develop
+
+```
+
+Each of the `cds-tab` components has a `target` attribute. This is used to
+identify the content visible when that tab is selected.
+
+Wrap the subgrid element immediately after the closing `` with the
+following. This is where we will place our first tab panel.
+
+```html path=index.html
+
+ ... grid element is here
+
+```
+
+Replace the content of the first column `7/16` with:
+
+```html path=index.html
+
What is Carbon?
+
+ Carbon is IBM’s open-source design system for digital products and
+ experiences. With the IBM Design Language as its foundation, the system
+ consists of working code, design tools and resources, human interface
+ guidelines, and a vibrant community of contributors.
+
+
Learn more
+```
+
+The second column content `8/16` is replaced with:
+
+```html path=index.html
+
+```
+
+The `tab-illo.png` image is already located in the `public` folder.
+
+After the closing `
` of `id="panel-about"`, still inside
+`page-landing__r2` we add two further tab panels. This one
+
+```html path=index.html
+