Skip to content

Commit

Permalink
πŸ“– DOC: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
luangjokaj committed Aug 14, 2019
1 parent 9f21e6a commit b51b8c5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ watch('./src/assets/css/**/*.scss', stylesDev);

Change the gulp tasks styleProd to:


```javascript
function stylesProd() {
return src('./src/assets/css/style.scss')
Expand Down Expand Up @@ -285,15 +284,15 @@ src/assets/fonts/

Then you can include them in your **CSS**:

```
```css
@font-face {
font-family: 'Helvetica Neue Thin';
src: url('./fonts/Helvetica-Neue-Thin.eot?#iefix');
src: url('./fonts/Helvetica-Neue-Thin.eot?#iefix') format('eot'),
src: url('./fonts/Helvetica-Neue-Thin.eot');
src: url('./fonts/Helvetica-Neue-Thin.eot') format('eot'),
url('./fonts/Helvetica-Neue-Thin.woff2') format('woff2'),
url('./fonts/Helvetica-Neue-Thin.woff') format('woff'),
url('./fonts/Helvetica-Neue-Thin.ttf') format('truetype'),
url('./fonts/Helvetica-Neue-Thin.svg#e3b7d1e7c160') format('svg');
url('./fonts/Helvetica-Neue-Thin.svg') format('svg');
}
```

Expand Down

0 comments on commit b51b8c5

Please sign in to comment.