It is best to use a POGIL approach with the following. In POGIL students work in groups on activities and each member has an assigned role. For more information see https://cspogil.org/Home.
If you work in a group, have only one member of the group fill in the answers on this page. You will be able to share your answers with the group at the bottom of the page.
Put the blocks into order to define just the body of simple HTML page with a table. The table has a header row and one row of data. Indent the blocks to show the structure.
Put the blocks into order to define just the body of simple HTML page with a table. The table has two rows of data. The first row is data about the United Kingdom and the second is data about India. Indent the blocks to show the structure.
The start tag <a> contains an attribute href and value "https://www.w3schools.com/". The text of the tag is Visit W3Schools.com! which is the actual text of the link when it is displayed. If you click on the link you will be taken to the href value: https://www.w3schools.com/. The <a> tag has a closing </a> tag.
Web pages can include images using the <img> tag. The image tag has an attribute src that specifies the URL for the image and can have an alt attribute to specify alternative text that describes the image.
All HTML tags can have attributes. Attributes provide additional information about the tag such as the alternative text to use for an image as shown above by the alt attribute of the img tag. Attributes are specified by name and value pairs. The value should be in quotes.
The attribute name is on the left side of the equal sign
<html><head><title>My First Page</title></head><body><h1>The First Page</h1><p>HTML is the language used to create web pages.</p><ahref="https://www.w3schools.com/"></a><imgsrc="https://i.ibb.co/WfcrzVn/beach.jpg"alt="A picture of a beach">
</body></html>
The attribute name is on the left side of the equal sign
<html><head><title>My First Page</title></head><body><h1>The First Page</h1><p>HTML is the language used to create web pages.</p><ahref="https://www.w3schools.com/"></a><imgsrc="https://i.ibb.co/WfcrzVn/beach.jpg"alt="A picture of a beach">
</body></html>
The div tag is used to contain other HTML tags (elements). It is often used to divide the HTML page into sections. The span tag is used for inline grouping or styling. You can use Cascading Style Sheets (CSS) to change the look of each HTML tag (element). You can add the CSS directly in the head section using the style tag, but the recommended approach is to use external CSS.
If you worked in a group, you can copy the answers from this page to the other group members. Select the group members below and click the button to share the answers.
The Submit Group button will submit the answer for each each question on this page for each member of your group. It also logs you as the official group submitter.