New to coding Looking to make friends

Joined
Oct 25, 2024
Messages
2
Reaction score
2
Code:
<!DOCTYPE  html >
<html lang="en"
<head>
<title>My Website</title>
</head>
<body>
<p>This is just to show the html i know with the notes that i have.
   Im currently leaning and looking to make friends. im learning off of
   w3schools. Im hoping to make friends/join a team to have finiancial stability, so i can keep doing what i enjoy in life. Id like to make a video game/website possibly my own console someday.
</body>
</html>
 
Last edited:
Joined
Aug 22, 2023
Messages
66
Reaction score
18
Welcome! Here is a corrected version of your code:
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Website</title>
</head>
<body>
<p>This is just to show the html i know with the notes that i have.
   Im currently leaning and looking to make friends. im learning off of
   w3schools. Im hoping to make friends/join a team to have finiancial stability, so i can keep doing what i enjoy in life. Id like to make a video game/website possibly my own console someday. </p>
</body>
</html>
 
Joined
Oct 25, 2024
Messages
2
Reaction score
2
<!DOCTYPE html >
<html lang="en"
<head>
<title>My Website</title>
</head>
<body>
<p>Much appreciated. i have now turned this question to my vlog. i am currently learning about <span>float</span><span>flex<span> and <span>Grid</span>. i'll probs spent some time trying to write some code and going over notes. i would like
to make my page background-color:purple; yet im not knoey of how to add the copy/float. it seems its either one or the other. </p>
</body>
</html>
 
Joined
Aug 22, 2023
Messages
66
Reaction score
18
Cool! Good luck! I have corrected your code once again, and have made your background color purple. Hope this was helpful! By the way, span does not have any effect unless you assign some sort of attribute to it so that it can be manipulated using CSS, or some other programming language!
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Website</title>
<style>
.body {
background-color:purple;
}
</style>
</head>
<body>
<p>Much appreciated. i have now turned this question to my vlog. i am currently learning about <span>float</span><span>flex</span> and <span>Grid</span>. i'll probs spent some time trying to write some code and going over notes. i would like
to make my page background-color:purple; yet im not knoey of how to add the copy/float. it seems its either one or the other.</p>
</body>
</html>
 
Joined
Jul 4, 2023
Messages
609
Reaction score
81
Check this ;)
HTML:
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Website</title>
    <style>
      html,
      body {
        margin: 0;
      }
      body {
        background-color: purple;
        color: white;
        font: 300 .95em/1 system-ui, monospace, sans-serif;       
      }
      span {
        font-weight: 700;
      }
      section {
        display: flex;
        padding: 0 1rem;
      }
      section + section {
        padding-top: 0;
      }
    </style>
  </head>
  <body>
    <main>
      <section>
        <p>Much appreciated. i have now turned this question to my vlog. i am currently learning about <span>float</span> <span>flex</span> and <span>Grid</span>. i'll probs spent some time trying to write some code and going over notes. i would like
          to make my page background-color:purple; yet im not knoey of how to add the copy/float. it seems its either one or the other.
        </p>
      </section>
      <section>
        <p>Much appreciated. i have now turned this question to my vlog. i am currently learning about <span>float</span> <span>flex</span> and <span>Grid</span>. i'll probs spent some time trying to write some code and going over notes. i would like
          to make my page background-color:purple; yet im not knoey of how to add the copy/float. it seems its either one or the other.
        </p>
      </section>
    </main>
  </body>
</html>
 
Joined
Mar 7, 2025
Messages
63
Reaction score
0
Welcome! Here is a corrected version of your code:
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Website</title>
</head>
<body>
<p>This is just to show the html i know with the notes that i have.
   Im currently leaning and looking to make friends. im learning off of
   w3schools. Im hoping to make friends/join a team to have finiancial stability, so i can keep doing what i enjoy in life. Id like to make a video game/website possibly my own console someday. </p>
</body>
</html>
Thankyou for this information I'll try it soon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,347
Messages
2,571,447
Members
48,794
Latest member
Engareh

Latest Threads

Top