Skip to content

Commit c06c8b1

Browse files
committed
instructions tweaks
1 parent ed39543 commit c06c8b1

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

css/normalize.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2+
/**
3+
* ---------------------------------------
4+
* DO NOT EDIT THIS FILE.
5+
* All your styling should go in style.css
6+
* ---------------------------------------
7+
*/
8+
9+
110
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
211

312
/**

css/style.css

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11

2-
/* Use the 'Roboto' font from Google. Already added to your HTML header */
2+
/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
33

44
body {
55
font-family: 'Roboto', sans-serif;
66
-webkit-font-smoothing: antialiased;
77
}
88

9-
/* Add your custom styles here */
10-
/* Remember: be organised, use comments and separate your styles into meaningful chunks */
11-
/* For example: General styles, Navigation styles, Hero styles, Footer etc. */
9+
/**
10+
* Add your custom styles below
11+
*
12+
* Remember:
13+
* - Be organised, use comments and separate your styles into meaningful chunks
14+
* for example: General styles, Navigation styles, Hero styles, Footer etc.
15+
*
16+
* - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
17+
*/
1218

13-
/* TIP: When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex' */
1419

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<link href='//fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
88
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
99
<link rel="stylesheet" href="css/normalize.css">
10+
<!-- Add a link to your CSS file here (use the line above to guide you) -->
1011
<link rel="stylesheet" href="css/style.css">
1112
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
1213
</head>
1314
<body>
1415

1516
<!-- Add your HTML markup here -->
1617
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
17-
18-
<!-- All the imges you need are in img folder -->
18+
<!-- All the images you need are in the 'img' folder -->
1919

2020
</body>
2121
</html>

0 commit comments

Comments
 (0)