Problem Statement
Which tag is used to link the Bootstrap CSS file from CDN?
Explanation
The link tag is used to include the Bootstrap CSS file in the head section of HTML. The script tag is for JavaScript files.
Code Solution
SolutionRead Only
<link href='https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css' rel='stylesheet'>
