The <mark> element is used to highlight a text by assigning a background-color attribute
Example:
This is an example of the <mark style="background-color:yellow;">mark</mark> element
This is an example of the mark element
This is an example of the <mark style="background-color:yellow;">mark</mark> element
This is an example of the <mark style="background-color:yellow;">mark</mark> element
<p>Our goal is to have 500 runners: </p>
0
<progress value=”250” max=”500”></progress>
500
<p>Please wait while we download your TPS Report!</p>
<progress></progress>
<p>Our goal is to have 500 runners: </p>
0
<progress value=”250” max=”500”></progress>
500
<p>Please wait while we download your TPS Report!</p>
<progress></progress>
SELECT ProductName,
Categories.CategoryName AS Category,
Suppliers.CompanyName AS Supplier,
QuantityPerUnit,
UnitPrice,
UnitsInStock,
UnitsOnOrder,
ReorderLevel,
Discontinued
FROM Products,Categories,Suppliers
WHERE Products.CategoryID = Categories.CategoryID
AND Products.SupplierID = Suppliers.SupplierID