Skip to content

Commit bad233c

Browse files
authored
changed files by pdets auto publish service, publishid[18ec4204-fe96-48c9-ba2f-5338f2b3ef62] and do [publish].
1 parent 814e571 commit bad233c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

learn-pr/wwl-azure/build-first-html-webpage/includes/5-research-links-lists-images.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The resource being referenced is indicated by using an **attribute** called `hre
1212
<a href="some url">clickable text</a>
1313
```
1414

15-
Key-value pairs are used in forms. If you fill out a form, you may be asked for your first name and last name separately. The form will have a label **First name** and a blank space and another label **Last name** and a blank space. The labels are like *keys* in HTML attributes, and whatever you put in the blank space is the *value*. In HTML attributes, the key and the value are joined by an equal sign to show they belong together.
15+
Key-value pairs are used in forms. If you fill out a form, you may be asked for your first name and last name separately. The form has a label **First name** and a blank space and another label **Last name** and a blank space. The labels are like *keys* in HTML attributes, and whatever you put in the blank space is the *value*. In HTML attributes, the key and the value are joined by an equal sign to show they belong together.
1616

1717
### Resource Indicators
1818

@@ -32,7 +32,7 @@ It's possible to link to an email address. This type of link will automatically
3232

3333
### Accessibility and Links
3434

35-
If you put a link in the HTML page you're creating, you'll notice that the text between (not inside) the opening and closing tag turns blue. You'll also notice that the address is hidden. Finally, you'll notice that the word is now selectable. That is, you select the word to be taken to the resource.
35+
If you put a link in the HTML page you're creating, you notice that the text between (not inside) the opening and closing tag turns blue. You'll also notice that the address is hidden. Finally, you notice that the word is now selectable. That is, you select the word to be taken to the resource.
3636

3737
The text that is displayed as the link is known as link text. Using good link text is a key to ensuring your page is accessible to all users. Phrases like "click here" are disruptive to screen readers and other non-browser tools used to navigate the web. As a best practice, always use link text that briefly describes the resource being referenced. You can learn more about ensuring accessibility by exploring the Accessibility Learn module.
3838

@@ -41,15 +41,15 @@ The text that is displayed as the link is known as link text. Using good link te
4141
The `img` tag is used to display images on a page. Unlike most other elements, `img` has no closing tag. The `src` attribute is used to point to the location of the image to display on the page, and the `alt` describes the contents of the image for things like search engines and screen readers.
4242

4343
> [!IMPORTANT]
44-
> While the `height` and `width` attributes can be used to specify the display height and width of the image, they do not resize the image file itself. The best practice is to make the image file the dimensions you will use on the page.
44+
> While the `height` and `width` attributes can be used to specify the display height and width of the image, they do not resize the image file itself. The best practice is to make the image file the dimensions you use on the page.
4545
4646
```html
4747
<img src="headshot.png" alt="Picture of an employee.">
4848
```
4949

5050
## Creating Lists
5151

52-
You will quite frequently need to display a list of information on a page. When building your resume, you will want to list prior roles or qualifications. HTML provides two different types of lists, ordered and unordered.
52+
You will frequently need to display a list of information on a page. When building your resume, you want to list prior roles or qualifications. HTML provides two different types of lists, ordered and unordered.
5353

5454
To create a list, you will first decide the type of list you wish to create. An ordered list is ordered with numbers (the default) or letters and uses `ol` for **ordered list**. An unordered list uses bullet points and is identified with `ul` for **unordered list**. The items are indicated with `li` for **list item**.
5555

0 commit comments

Comments
 (0)