|
Memory
Guest
|
 |
« Reply #1 on: March 06, 2024 @954.09 » |
|
I'm not exactly sure what you are asking for, I checked your source code and it seems you are missing a few html tags. For starters you should only use the <body> tag at the start of your html content (all the text and imgs), along with a closing </body> tag at the end of all your html tags. For example: <body>
<body>
<p>Don't do this</p>
</body>
</body>
<body>
<p>Keep all the html in one body, you can't have multiple.</p>
</body>
I also noticed that you missed quite a few closing tags for content especially with links which uses an "<a>" tag along with a text tag like "<p>", these tags should be closed with a "</a >" plus a "</p>" at the end of the line of code. I've noticed a few areas in your code where you missed a few closing </a > tags and the ending "</li>" tags for the bullet point text: <h1><center>Shrines</center></h1>
<ul style="list-style-type: none">
<li><a href="https://sorcer.neocities.org/MiiShrine">Miis (Under construction, needs a major rework)</a></li>
<li><a href= "https://sorcer.neocities.org/MadouPuyoShrine">Madou Monogatari/Puyo Puyo (Under construction) <-- here
<li><a href= "https://sorcer.neocities.org/DarkstalkersShrine">Darkstalkers (Under construction) <-- here
</ul>
Here is the corrected version of this snip with the ending tags: <h1><center>Shrines</center></h1>
<ul style="list-style-type: none">
<li><a href="https://sorcer.neocities.org/MiiShrine">Miis (Under construction, needs a major rework)</a></li>
<li><a href= "https://sorcer.neocities.org/MadouPuyoShrine">Madou Monogatari/Puyo Puyo (Under construction)</a></li>
<li><a href= "https://sorcer.neocities.org/DarkstalkersShrine">Darkstalkers (Under construction)</a></li>
</ul>
You also seem to be pretty new to HTML, I would recommend trying to research how HTML is constructed and why things are the way they are. Hope this helps!
|
|
« Last Edit: March 06, 2024 @959.37 by Memory »
|
Logged
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|