You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en/step_6.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Now you'll add some Cascading Style Sheets (CSS) to add colour to your web page.
4
4
5
5
--- task ---
6
6
7
-
First, return to the terminal/command prompt window and navigate to the `webapp` directory. If you're in the `templates` directory, go back up one level with `cd ..`.
7
+
First, return to the terminal/command prompt window and navigate to the `webapp` directory. If you're in the `templates` directory, go up one level with the command`cd ..`.
8
8
9
9
--- /task ---
10
10
@@ -20,7 +20,7 @@ mkdir static
20
20
21
21
--- task ---
22
22
23
-
Create a new file in IDLE by clicking **File** and **New File**, and save this file as `style.css` in the `static` folder you just created.
23
+
Create a new file in IDLE by clicking **File** and **New File**, and save this file as `style.css` in the `static` folder.
24
24
25
25
--- /task ---
26
26
@@ -37,7 +37,7 @@ body {
37
37
38
38

39
39
40
-
**Note:**you have used colour names here, but you could also create colours using hex codes like `#ff0000` (red).
40
+
**Note:**this code contains colour names, but you could also create colours using hex codes like `#ff0000` (red).
41
41
42
42
--- /task ---
43
43
@@ -66,15 +66,15 @@ Now modify your `index.html` HTML template to include the CSS rules by adding a
66
66
67
67
--- task ---
68
68
69
-
Save the change to `index.html` and refresh your browser. You should see a colourful version of the web app!
69
+
Save the change to `index.html` and refresh your browser. You should see a colourful version of your web app!
70
70
71
71

72
72
73
73
--- /task ---
74
74
75
-
If your web app doesn't look right, you may not have saved your CSS file in the right place.
75
+
If your web app doesn't look right, your CSS file might not be in the right directory.
76
76
77
-
By now you've created a number of files and directories for your web app. It is worth quickly double-checking your `webapp` project directory, which should contain the following and have a structure like this now:
77
+
You now have a number of files and directories for your web app. It is worth making sure your `webapp` project directory contains the following files and has the following structure:
0 commit comments