HTML - text


HTML Text Code:

<html> 
  <head>
    <title>My Web Page!</title>
  </head>
  <body>
    Hello World!
  </body>
</html>


html - paragraph text


<html> 
  <head>
    <title>My Web Page!</title>
  </head>
  <body>
    <p>Avoid losing floppy disks with important school...</p>
    <p>For instance, let's say you had a HUGE school...</p>
  </body>
</html>



HTML - headings 1to 6

<body>
  <h1>Headings</h1>
  <h2>are</h2>
  <h3>great</h3>
  <h4>for</h4>
  <h5>titles</h5>
  <h6>and subtitles</h6>
</body>



No comments:

Post a Comment