Okay so I'm 100% new to programming. The question format may also be wrong. The Question: theme on html? Still beginner on html. wanted it to look aesthetically pleasing to my eyes at least with what I've learnt. No CSS knowledge yet. I've been little bit searching whatever i feel like putting on my page(emojis). I've searched Google and did what was written but it still doesn't display the theme. Okay so here's the code so you can see, will add more things later as i learn(I know it's nothing for you all):
<html> <head> <meta charset=“UTF-8”> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#f7cac9"> <title>Galaxia </title> </head> <body> <h3 style = "position:absolute; right:150px; top:-10px; background-color:pink;"> Welcome to my weird abode 🦋 </h3> <br> <br> <!-- added two br tags because otherwise heading and paragraph overlap --> <div class="coder"> <p>This is a html example from me for now, <br> have fun.:) </p> </div> </body> </html>
Thank you in advance!
"position:absolute; right:150px; top:-10px; background-color:pink;"
that is css - Aidan Welch