- 1
Please I'm finding it difficult to assimilate HTML can someone please help me out how to go about it and understand properly
Having difficulties in the TAGS
4 Respuestas
0
I would like to help you. Can you please specify which aspect of HTML you are heaving difficulties with?
Here are just a few basics:
- HTML defines the structure of your web page.
- Elements are like squares, nested in each other.
- Some elements require a closing tag. For example, a "div" tag is written as <div></div>, so you can write HTML or plain text between the tags. </div> is here the closing tag.
- Other elements close themselves and do not need a closing tag. For example, a "br" tag is written as <br> or <br />. These elements don't have a closing tag because of their behaviour. A "br" tag, in this case, creates a line break. It's perfectly logical that you can't write HTML or plain text within a line break.
- Appart from that it's just a matter of memorizing the most commonly used tag names and there functionality.
A quick example:
<p>
This is some text in a paragraph.<br>
This is some text in a paragraph after a line break.
</p>
EDIT:
I recommend to just write HTML and Google issues.
0
Thanks I really appreciate
0
The aspect in which I'm having problem is the TAGS .... Finding difficult to use them
0
Most tags need a closing tag so <title>Hello</title> requires the closing tag </title>.
But image doesn't have a closing tag it is just <img imagepath\filename.extention>
I learnt html and css from https://www.w3schools.com/html/html_intro.asp