how can i make this ? i cant seem to figure it out, make 2 separate
tags but then the starting at 3$ a brush will be on the next line. make only 1
tag but i can not only style that part. can anyone help please ?
P element that reads: “Made of the highest quality oak, Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Available in different sizes.” This text is black and aligned to the left.
The text “Starting at $3.00 / brush” follows directly after the P element’s sentence “Available in different sizes”. And is styled differently:
The most basic of all elements in HTML is paragraph, denoted by the opentag<p>, and because it wraps textual content, must have an endtag, </p> to tell us where that content ends. In the markup it will look like this:
<p>Hello World!</p>
You will notice that the text in an element is not wrapped in quotation marks. Everything is already text. What this suggests is that the quotes in your above example are from the lesson instructions, and are placed in quotes just so we can be sure exactly what text to use, but, we do not include the quotes. Therefore,
<p>Made of the highest quality oak, Hacksaw brushes are known
for their weight and ability to hold paint in large amounts.
Available in different sizes.</p>
It is practical to get a lay of the land when starting out. From your example it looks like we need three P elements. A good place to start is with the markup, then fill in the textual content to finish it off. This is preferred to inline writing.
<p></p>
<p></p>
<p></p>
The default color is black, and the default text alignment is left so all three paragraphs should appear as normal.