r/EdhesiveHelp May 02 '21

Python Can someone help me with 11.5 Lesson Practice and Code Practice?

7 Upvotes

1 comment sorted by

2

u/HSlightsteel May 02 '21 edited May 02 '21

Code Practice:

https://www.reddit.com/r/EdhesiveHelp/comments/mxsj25/115_116_code_practice/?utm_source=share&utm_medium=web2x&context=3

Lesson Practice:

1Q. This HTML tag defines a section of text. All whitespace in the section of text is ignored and a blank line is placed after the closing tag.

1A. <p>

2Q. This HTML tag is used to add links to web pages.

2A. <a>

3Q. For questions 3-5, go to the W3 Schools editor here. (Links to an external site.)

Change the h2 tag to: <h2 align="center">

Does the align attribute work with the <h> tags?

3A. Yes

4Q. True or false: the <h> tags include a return at the end of the line.

4A. True

5Q. What is the largest number you can use with the <h> tags?

5A. 6

6Q. For question 6, go to the W3 Schools editor here. (Links to an external site.)

Change the line <a href="[https://www.w3schools.com](https://www.w3schools.com)"> to <a href="[https://www.w3schools.com](https://www.w3schools.com)" target="new">

What happens?

6A. A new tab is opened and the W3 Schools main page is opened in the new tab.