Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 65d51f1

Browse files
committed
remove pencil language for files changed view
1 parent d6899c6 commit 65d51f1

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

responses/02-html-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Apply this suggested change, or follow the instructions below if you'd like to t
3636
```
3737

3838
1. Click on **Files Changed** to see the newly added `index.html` file.
39-
1. Click on the :pencil: to edit the file.
39+
1. Click on the ellipsis (...) and select **Edit file**.
4040
1. Before the existing content, add an opening `<html>` tag, and an opening `<body>` tag.
4141
1. After the existing content, add a closing `</body>` tag, and a closing `</html>` tag.
4242
1. In the _Commit changes_ section, enter a commit message that describes what you've done.

responses/03-title-tag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Apply this suggested change, or follow the instructions below if you'd like to t
4444
```
4545

4646
1. Click on **Files Changed**.
47-
1. Click on the :pencil: to edit the file.
47+
1. Click on the ellipsis (...) and select **Edit file**.
4848
1. Place an opening `<head>` tag and an opening `<title>` tag after the first opening `html` tag, but before the `body` tag.
4949
1. Write out a title after the opening `title` tag.
5050
1. Place a closing `</title>` tag and a closing `</head>` tag after your new title, but before the `body` tag.

responses/03e-add-html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Let's try again!
99
### :keyboard: Activity: Add the `html` and `body` tags to `index.html`
1010

1111
1. Click on **Files Changed** to see the newly added `index.html` file.
12-
1. Click on the :pencil: to edit the file.
12+
1. Click on the ellipsis (...) and select **Edit file**.
1313
1. Before the existing content, add an opening `<html>` tag, and an opeining `<body>` tag.
1414
1. After the existing content, add a closing `</body>` tag, and a closing `</html>` tag.
1515
1. In the _Commit changes_ section, enter a commit message that describes what you've done.

responses/03e-add-title.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Let's try again!
1010
### :keyboard: Activity: Give your page a title
1111

1212
1. Click on **Files Changed**.
13-
1. Click on the :pencil: to edit the file.
13+
1. Click on the ellipsis (...) and select **Edit file**.
1414
1. Place an opening `<head>` tag and an opening `<title>` tag after the first opening HTML tag, but before the body tag.
1515
1. Write out a title after the opening title tag.
1616
1. Place a closing `</title>` tag and a closing `</head>` tag after your new title, but before the body tag.

responses/06-add-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You'll also notice that the image tag doesn't need to close since it is consider
1313
### :keyboard: Activity: Add an image to your web page
1414

1515
1. Click on **Files Changed**.
16-
1. Click on the :pencil: to edit the file.
16+
1. Click on the ellipsis (...) and select **Edit file**.
1717
1. Place an opening `<img>` tag between the body tags. Reminder: you don't need to close an `<img>` tag!
1818
1. Set the `src` attribute to the image you would like to display. You can use your GitHub profile picture: `{{ user.avatarUrl }}`
1919
1. In the _Commit changes_ section, enter a commit message that describes what you've done.

responses/06e-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Let's try again!
99
### :keyboard: Activity: Add an image to your web page
1010

1111
1. Click on **Files Changed**.
12-
1. Click on the :pencil: to edit the file.
12+
1. Click on the ellipsis (...) and select **Edit file**.
1313
1. Place an opening `<img>` tag inside the body tag.
1414
1. Set the `src` attribute to your GitHub profile picture: ``{{ user.avatarUrl }}``
1515
1. In the _Commit changes_ section, enter a commit message that describes what you've done.

responses/09-add-links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Hyperlinks allow people to navigate through pages on the web. Links are achieved
2424
### :keyboard: Activity: Create links to your favorite sites
2525

2626
1. Click on **Files Changed**.
27-
1. Click on the :pencil: pencil icon to edit the file.
27+
1. Click on the ellipsis (...) and select **Edit file**.
2828
1. In the list you just created, add a link to each of your favorite sites to their respective URLs. You can do this by adding an opening anchor tag `<a>` tag with `href` attribute with your favorite site's URL, the name of the site inside the anchor tag, and a closing anchor `</a>` tag. Here is an example of a list item with a link:
2929

3030
{% if GHE_HOST %}

responses/09e-links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Let's try again!
99
### :keyboard: Create links to your favorite sites
1010

1111
1. Click on **Files Changed**.
12-
1. Click on the :pencil: to edit the file.
12+
1. Click on the ellipsis (...) and select **Edit file**.
1313
1. Link each of your favorite sites to their respective URLs. You can do this by adding an opening anchor tag `<a>` tag with `href` attribute with your favorite site's URL, the name of the site inside the anchor tag, and a closing anchor `</a>` tag.
1414
1. In the _Commit changes_ section, enter a commit message that describes what you've done.
1515
1. Click on **Commit changes**.

responses/11-style-fail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Let's try again!
88
### :keyboard: Add the stylesheet
99

1010
1. Click on **Files Changed**.
11-
1. Click on the :pencil: to edit the file.
11+
1. Click on the ellipsis (...) and select **Edit file**.
1212
1. Add the link tag inside the `<head>` section of the index: `<link rel="stylesheet" href="style.css">`
1313
1. In the _Commit changes_ section, enter a commit message that describes what you've done.
1414
1. Click on **Commit changes**.

0 commit comments

Comments
 (0)