There are two messages in this example. The time that the message was sent is displayed for the first message, but it is missing in the second message. Complete the following steps:
- Open the
index.html
file and add the time7:15pm
to the second message using the correct HTML syntax. You will need to identify the correct location in the code to add a new tag and make sure that you give it the correct class attribute. - When you have finished, ask a mentor to check your work.
- When a mentor has told you it's correct, use git to add, commit and push your changes.
git add .
git commit -m "Completed 1-parent-child exercise"
git push
Hint: Use the first message as an example to help you write the second message correctly.
If you are having trouble, review the following information about HTML tags and parent-child relationships.
You're already familiar with HTML code from your application process. If you want to refresh your memory, read this quick guide to the HTML syntax.
Let's review parent-child relationships in the following example.
<article class="message">
<div class="message__author">Anthony</div>
<p class="message__content">Who is available to meet this week to work on our group project?</p>
<span class="message__time">6:48pm</span>
</article>
First, we start with an empty parent tag:
<article class="message"></article>
Now we add a child tag:
<article class="message">
<div class="message__author">Anthony</div>
</article>
The <div>
tag is a child of the <article>
tag because is starts after <article>
and ends before </article>
.
Add another child tag:
<article class="message">
<div class="message__author">Anthony</div>
<p class="message__content">Who is available to meet this week to work on our group project?</p>
</article>
The <p>
tag is also a child of the <article>
tag. Since the <div>
and <p>
tags share the same parent, we call them "sibling" tags, like brothers and sisters.
When you're done, move on to the next exercise.