IMPORTANT: Please read our Guide To Quality Writing before you begin posting!

Dismiss Notice
Please note that we are only approving writers from the US, UK and Canada at this time.

About My First Page in HTML

Discussion in 'Programming' started by mohammed belkharraf, Jul 31, 2016.

  1. mohammed belkharraf

    mohammed belkharraf New Member

    Joined:
    Feb 4, 2016
    Posts:
    11
    Likes Received:
    2
    Gender:
    Male
    Hello,
    When I was at the age of 13 years old, I started to learn programming languages(HTML).
    HTML is very easy language you can learn it in half-hour.So The first page was a programmed is about a DIV that move when the mouse over it.and this is the code HTML
    <html>
    <head>
    <title>My First Page</title>
    </head>
    <body>
    <style>
    .movediv {height:100px;width:50%;border:1px solid #000;transition:all 1s;}
    .movediv:hover {height:130px;transition:all 1s;}
    </style>
    <div class="movediv">
    When I was at the age of 13 years old, I started to learn programming languages(HTML).
    HTML is very easy language you can learn it in half-hour.So The first page was a programmed is about an DIV that move when the mouse over it
    </div>
    </body>
    </html>
     

Share This Page