Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
docs: Recommend Material Icons in Getting Started Guide (#4501)
Browse files Browse the repository at this point in the history
(cherry picked from commit 6a86818)
  • Loading branch information
dfabulich authored and Kenneth G. Franqueiro committed Mar 26, 2019
1 parent c021fe0 commit c812044
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,18 @@ path: /docs/getting-started/
To try Material Components for the web with minimal setup, load the precompiled all-in-one CSS and JS bundles from unpkg:

```html
https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css
https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js
<head>
<link href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css" rel="stylesheet">
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
</head>
```

We also recommend using [Material Icons](https://material.io/tools/icons/) from Google Fonts. (Some of our examples implicitly use Material Icons.)

```html
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
```

Then include MDC markup...
Expand Down

0 comments on commit c812044

Please sign in to comment.