<body>


    <h1>HTML</h1>

    <h2><del>hypertext markup language</del></h2>

      <select name="html" size="1">
        <option>hello to my ladies</option>
        <option>hyper trendy musical lalala</option>
        <option>he taught me laughing</option>
         <option selected>hi there my love</option>
         <option>hunger tells me lies</option>
         <option>haha thihi mhaha lol</option>
      </select>

    <h3>Learn html to </h3>
    <p>
        <b>H</b>ave
    </p>
    <p>
      <b>T</b>he
    </p>
    <p>
      <b>M</b>agnificent
    </p>
      <p>
      <b>L</b>ife
    </p>

      <h3>of a web developer</h3>

      <img src="https://i.imgflip.com/1nty4l.jpg">

    <h6>Image Source: https://i.imgflip.com/1nty4l.jpg </h6>


    </body>
index.html
body {
    background-color: #EED5D2;
    color: #fff;
    font-family: lucida console;
    align-items: center;
    height: 100vh;
    font-size: 1.3rem;
    text-align: center;
  }

  b {
    font-size: 3rem;
    color:#7fcc19;
  }

  h1{
    font-family: arial;
    font-size: 6rem;
    transition: 2s ease;
  }
  h1:hover{
    color:#7fcc19;
    size:200%;
    transform: rotate(720deg);
  }

  h6{
    font-family: arial;
  }

  select{
    width:100%;
    color:#741b47;
    background-color: transparent;
    font-size:1.3rem;
  }

  img{
    width:100%;
  }
style.css