<!DOCTYPE html>
<html lang="en">
<!-- User Editable Region -->
<head>
<title>Rothko Paiting>
<meta charset="UTF-8">
</title>
</head>
<body>
<img src="https://cdn.freecode.camp.org/curriculum/css-box-model/diagram-1.png">
</body>
<!-- User Editable Region -->
hello everyone, kindly wake me through this. below is my code. and also the instruction.
Step 2
Within the head element, add a meta tag which sets the charset to UTF-8, and a title element with the value Rothko Painting.
Within the body element, add an img element with a src of https://cdn.freecodecamp.org/curriculum/css-box-model/diagram-1.png.
<head>
<title>Rothko Paiting>
<meta charset="UTF-8">
</title>
</head>
<body>
<img src="https://cdn.freecode.camp.org/curriculum/css-box-model/diagram-1.png">
</body>`Preformatted text`
</html>
You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
Great work! After ‘Painting’ get rid of angle bracket ( > ). Cut and paste ‘meta’ tag on next line. It should not be wrapped between the ‘title’ tags. Hope this helps.
Theres even more issues than what the other three comments have addressed you need to
Move the meta element outside of the title element
Correct the spelling of the word “Painting”
Get rid of the bracket > that comes after the word painting
fix your img src because it is not correct. Look at what the challenges tells you to use for the src, and compare it to what you have. You can also copy and paste the src the challenge gives you
It helps if you go line by line in your code when checking to see what is wrong. There is not a lot of code here, and some of these can be caught pretty quickly.