Answer & Solution
<style> tag is used to define internal CSS styles within an HTML document, allowing developers to apply styles directly to HTML elements.
<style> tag in HTML?
<style> tag is used to define internal CSS styles within an HTML document, allowing developers to apply styles directly to HTML elements.
Which of the following best describes the role of HTML in web development?
A). To define the structure and content of web pages
B). To style and layout web pages
C). To handle server-side processing
D). To manage client-side scripting
What is the purpose of the <title> tag in HTML?
A). To define the title of the web page
B). To create a heading
C). To insert an image
D). To define a hyperlink
Which of the following is a correct way to insert a line break in HTML?
A). <br>
B). <lb>
C). <break>
D). <nl>
Which of the following is a semantic HTML element?
A). <header>
B). <div>
C). <span>
D). <b>
What is the correct HTML syntax for inserting an image?
A). <img src='image.jpg' alt='Image'>
B). <image src='image.jpg' alt='Image'>
C). <img href='image.jpg' alt='Image'>
D). <image href='image.jpg' alt='Image'>
What is the purpose of the <meta> tag in HTML?
A). To provide metadata about the HTML document
B). To insert an image
C). To define a heading
D). To create a hyperlink
What is the correct HTML syntax for creating a hyperlink with the text 'Click Here' that links to 'example.com'?
A). <a href='http://example.com'>Click Here
B). <a src='http://example.com'>Click Here
C). <a link='http://example.com'>Click Here
D). <a url='http://example.com'>Click Here
What does the href attribute specify in HTML?
A). The URL of the linked document
B). The alternative text for the image
C). The text content of a hyperlink
D). The name of the anchor within a document
Which tag is used to create an unordered list in HTML?
A). <ul>
B). <ol>
C). <li>
D). <ul>
Which tag is used to define the root of an HTML document?
A). <html>
B). <body>
C). <head>
D). <title>