0
How to learn HTML
I've been studying HTML for about 3 long days now and I'm slowly getting it. But I'm getting confused on <doctype! HTML> and <img sec="">? Everytime I setup my <img sec> my image never comes up?
3 RĂ©ponses
+ 4
Ronald J Washington
You should need to learn first..
Learn this with carefully and proper way..
https://www.sololearn.com/learn/courses/html-introduction
https://www.sololearn.com/learn/courses/le-responsive-web-design
https://www.sololearn.com/learn/courses/web-development
+ 1
<!DOCTYPE html> tells the browser to expect an HTML5 document.
<img src=... > is simply a URL of an image. A good way to test an image URL is to just paste it in a browser and see if the image appears. If successful it will probably work in your code.
0
Could you please show an example of your code?