Computer scienceFrontendHTMLHTML IntroText formatting

HTML Quotations

cite attribute

Report a typo

Place a cite attribute inside the <q> tag in the below HTML code. Its URL should be https://developer.mozilla.org/en-US/, with the text, "Have a look at the updated MDN docs".

Edit the code below so that the desired result is rendered on the webpage.

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cite attribute</title>
</head>
<body>
</html>

Completed 0 of 2
The code is valid
Add cite attribute to the q tag with the url and the text.
___

Create a free account to access the full topic