tags are used in HTML to create a division or section within a document. They are commonly used to group and style elements together.
In the provided code snippet, we can see that the
tags are used to structure the content of an article. Each section of the article is enclosed within a
tag with specific class names for styling purposes. Let’s break down the code and understand the content of the article.
The article starts with a video section, which includes an embedded video from TMZ.com. The video is displayed with a play button and a thumbnail image. The
tags with class names “video-block,” “ratio,” and “ratio-16×9” are used to maintain the aspect ratio of the video player. The video is sourced from a URL and is credited to TMZ.com.
After the video section, there are several sections with
tags and class names “canvas-block” and “canvas-text-block.” These sections contain paragraphs of text that provide information about Shaquille O’Neal’s involvement in a company called Campus. The text describes how Campus aims to revolutionize 2-year degrees by offering affordable online education with professors from prestigious universities.
In between the text sections, there are also
tags with class names “canvas-image-block” that display images related to the article. These images are wrapped inside an tag that allows for lightbox preview functionality.
The article concludes with a final text section that encourages readers to check out the full conversation with Shaquille O’Neal and Tade regarding their efforts to revolutionize higher education.
Overall, the
tags in this code snippet are used to structure and organize the content of the article, allowing for proper formatting and styling.