Please I'm finding it difficult to assimilate HTML can someone please help me out how to go about it and understand properly | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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

5th Mar 2021, 8:47 AM
Emmanuel Brown
4 Answers
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.
5th Mar 2021, 10:36 AM
Ronald J. Tempel
Ronald J. Tempel - avatar
0
Thanks I really appreciate
5th Mar 2021, 6:36 PM
Emmanuel Brown
0
The aspect in which I'm having problem is the TAGS .... Finding difficult to use them
5th Mar 2021, 6:37 PM
Emmanuel Brown
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
6th Mar 2021, 12:57 AM
Gemma W
Gemma W - avatar