+ 2
How do I manage content in HTML5?
I am wondering how do I specifically adjust text placement on web page etc. The nav, header,and footer are pretty straight forward to me but I don't understand difference between article and section. Are semantical tags used to manage the placement of the content or css if for that purpose? Thx in advance
1 Resposta
+ 26
You can adjust text placement using <div> tags and some CSS properties.
Here is an example of how to divide a page into two sections and display a text in the center of each section:
https://code.sololearn.com/WS98qtZ2Z26c/?ref=app
I hope it'll help, good luck