Posts

Showing posts from February, 2021

HTML Attributes

 <html>     <head>        <title>Attributes</title>     </head>     <body>        <p align="center"><b>I love coding. I learn from an online Web Developer Telegram Coding Class </b> <br />           <hr width="25%" align="right" /> Coding is fun. You should take a class as well.        </p>     </body>  </html> Attributes I love coding. I learn from an online Web Developer Telegram Coding Class Coding is fun. You should take a class as well.

Blog Project - About Me

  <!DOCTYPE html> <html>     <head>         <title>About Me</title>         <link href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet">     </head>     <body>         <!-- About Me section start -->         <div class="section">             <h1><span>About Me</span></h1> <hr/ >             <p>                HI world, My name is <strong>Big Code</strong>. I love coding. Coding is <i>cool and fun. </i> I learn front end web development coding from online tutorials in a <strong>Web Developer Coding Class on Telegram by Perry Addo</strong> <hr />             </p>       ...

HTML Heading

  <html>     <head>        <title>HTML Headings</title>     </head>     <body>        <h1>This is heading 1 The biggest heading among the 6 headings</h1>        <h2>This is heading 2</h2>        <h3>This is heading 3</h3>        <h4>This is heading 4</h4>        <h5>This is heading 5</h5>        <h6>This is heading 6, the smallest heading among the 6 headings</h6>     </body>  </html> HTML Headings This is heading 1 The biggest heading among the 6 headings This is heading 2 This is heading 3 This is heading 4 This is heading 5 This is heading 6, the smallest heading among the 6 headings ...