I 've have started a tribute page Dr. Norman Borlaug. I 'vemade my own one of Mahatma Ghandi.
I have some problems with the letter size. Can anyone give some advice, what I did wrong? Because, I want my Mahatma Ghandi page like the Dr. Norman Borlaug page.
Looking at it some more, your main problem seems to be using the closing brackets on your html elements: < >
Try updating those, and then make sure your elements are nested within the parent elements and is formatted correctly. This makes reading code for you and for others a lot easier. Here is what you have:
<main id="main" <h1 id="title">Mahatma Ghandi</h1>
<p>The Holy Man </p>
<figure id="img-div">
<img id="image" src="https://wallpapercave.com/wp/wp1885553.jpg" alt="The best to find yourself is to lose yourself in the service of others" <figcaption id="img-caption"> The best to find yourself is to lose yourself in the service of others
</figcaption>
</figure>
I have cleaned it up with the corrections to show you as an example:
<main id="main">
<h1 id="title">Mahatma Ghandi</h1>
<p>The Holy Man </p>
<figure id="img-div">
<img id="image" src="https://wallpapercave.com/wp/wp1885553.jpg" alt="The best to find yourself is to lose yourself in the service of others">
<figcaption id="img-caption">
The best to find yourself is to lose yourself in the service of others
</figcaption>
</figure>