Skip to content

Commit a27b42b

Browse files
authored
copy edits
1 parent f6ea2d6 commit a27b42b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

en/step_6.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Now you'll add some Cascading Style Sheets (CSS) to add colour to your web page.
44

55
--- task ---
66

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 ..`.
88

99
--- /task ---
1010

@@ -20,7 +20,7 @@ mkdir static
2020

2121
--- task ---
2222

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.
2424

2525
--- /task ---
2626

@@ -37,7 +37,7 @@ body {
3737

3838
![idle css](images/idle-css.png)
3939

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).
4141

4242
--- /task ---
4343

@@ -66,15 +66,15 @@ Now modify your `index.html` HTML template to include the CSS rules by adding a
6666

6767
--- task ---
6868

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!
7070

7171
![Flask app with colour](images/flask-app-with-colour.png)
7272

7373
--- /task ---
7474

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.
7676

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:
7878

7979
```
8080
├── app.py

0 commit comments

Comments
 (0)