Answers with Certified Solutions
How do you open a link in a new tab using HTML?
✔✔ Add target="_blank" to the <a> tag.
Which attribute is used to specify the URL for a link?
✔✔ href
How do you link to an external website in HTML?
✔✔ Use the <a> tag with an href pointing to the full URL.
How do you create an email link in HTML?
✔✔ Use href="mailto:" in an <a> tag.
How can you link to a specific section within the same webpage?
✔✔ Use an anchor link with href="#" and an id on the target section.
1
,What is the purpose of the <img> tag in HTML?
✔✔ It displays an image on a webpage.
Which attribute specifies the source of an image in HTML?
✔✔ src
How do you add alternative text to an image?
✔✔ Use the alt attribute in the <img> tag.
How can you control the width of an image in HTML?
✔✔ Use the width attribute or CSS styling.
How do you make an image clickable as a link?
✔✔ Wrap the <img> tag inside an <a> tag.
Which tag is used to create an ordered list?
✔✔ <ol>
2
, How do you create a bulleted list in HTML?
✔✔ Use the <ul> tag with <li> elements inside.
How can you change the numbering style in an ordered list?
✔✔ Use the type attribute in the <ol> tag.
How do you nest a list within another list?
✔✔ Place a <ul> or <ol> inside an <li> element.
Which tag is used to create a table in HTML?
✔✔ <table>
How do you define a table row?
✔✔ Use the <tr> tag.
How do you create a table header?
✔✔ Use the <th> tag inside a <tr>.
3