International Villager- Basic HTML using table.

International Villager- Basic HTML using table.

Honey Singh, also known as Yo Yo Honey Singh, is an Indian rapper, singer, music producer and film actor.

Currently, there is a lot of buzz surrounding the upcoming release of Honey Singh's new album, "Honey 3.0". In light of this excitement, I decided to create a dynamic HTML website dedicated to his first album "International Villager".

This project was created to revise table concepts and some previous ones.

Below, I will share a sample of what I have created:

I will be posting my project below:

<!DOCTYPE html>
<html lang="en">
<head>
    <title>International Villager</title>
</head>

<style>
    body {
      background-color: #222222;
      color: #f9f9f9;}
    p {
    font-size: 25px;}
    h1 {
        text-align: center;
    }
    table td {
        font-size: 25px;
    }
  </style>

<body>

     <h1 style="font-size: 4em;">International Villager</h1>

     <div style="text-align:center;">
        <img src="international villager.jpg" alt="ufeelme" height="500" width="500" title="International Villager">
    </div>

     <p>International Villager is an album by <i>Punjabi music</i> artist <i>Yo Yo Honey Singh</i>. It was released on 11/11/2011.
     <br>
     This was the <i>first album</i> of honey singh which was the internet sensation of that time means the age of <i>2G</i>. It has following tracks-</p><br>
     <h2>Track listing-</h2>
     <p>The music of the album has been composed and programmed by Yo Yo Honey Singh. <br>All lyrics are written by Yo Yo Honey Singh,Money Aujla,Badshah,Raftaar,Kinder Joel,Raj Brar and many more. </p>

     <table border cellpadding="45px" >
        <tr>
            <th>Track Number</th>
            <th>Track Name</th>
            <th>Featuring</th>
            <th>Video</th>
        </tr>
        <tr>
            <td>1</td>
            <td>Brown Rang</td>
            <td>-</td>
            <td><embed src="https://www.youtube.com/embed/PqFMFVcCZgI"></td>
        </tr>
        <tr>
            <td>2</td>
            <td>Angrezi Beat</td>
            <td>Gippy Grewal</td>
            <td><embed src="https://www.youtube.com/embed/Bj3a53PYt5A" height="350px" width="620px"></td>
        </tr>
        <tr>
            <td>3</td>
            <td>Goliyan</td>
            <td>Diljit Dosanjh</td>
            <td><embed src="https://www.youtube.com/embed/WDOVxqsD3fs"></td>
        </tr>
        <tr>
            <td>4</td>
            <td>Dope Shope</td>
            <td>Deep Money</td>
            <td><embed src="https://www.youtube.com/embed/NrXdauEv9HY"></td>
        </tr>
        <tr>
            <td>5</td>
            <td>Gabru</td>
            <td>J-Star</td>
            <td><embed src="https://www.youtube.com/embed/Xq5UK_TB8J0" height="350px" width="620px"></td>
        </tr>
        <tr>
            <td>6</td>
            <td>Aashke</td>
            <td>Money Aujla</td>
            <td>Video is Private <br><embed src="https://www.youtube.com/embed/Q39yT0jN7Do"></td>
        </tr>
        <tr>
            <td>7</td>
            <td>Beautiful</td>
            <td>Malkit Singh</td>
            <td><embed src="https://www.youtube.com/embed/c_7UZPBzfcY"></td>
        </tr>
        <tr>
            <td>8</td>
            <td>Yadaan</td>
            <td>Sardool Sikander</td>
            <td>Video is Private <br><embed src="https://www.youtube.com/embed/s4madTXhfns"></td>
        </tr>
        <tr>
            <td>9</td>
            <td>Garaari</td>
            <td>Meet Malkit</td>
            <td>Video is Private <br><embed src="https://www.youtube.com/embed/nV17SrLJjjo"></td>
        </tr>
        <tr>
            <td>10</td>
            <td>Sambhle</td>
            <td>Manak Ali</td>
            <td>Video is Private <br><embed src="https://www.youtube.com/embed/IxjkDI8N1-8" ></td>
        </tr>
        <tr>
            <td>11</td>
            <td>Head Banger</td>
            <td>Escape</td>
            <td>Video is Private <br><embed src="https://www.youtube.com/embed/ppxmK6KoGo0" ></td>
        </tr>
        <tr>
            <td>12</td>
            <td>Yaad</td>
            <td>Romey Gill</td>
            <td>Video is Private <br><embed src="https://www.youtube.com/embed/x1p70cIHmbw" ></td>
        </tr>
        <tr>
            <td>13</td>
            <td>Get Up Jawani</td>
            <td>Badshah</td>
            <td><embed src="https://www.youtube.com/embed/CV1AwjUGocI" height="350px" width="620px"></td>
        </tr>
        <tr>
            <td>14</td>
            <td>Mujh Ko Jaane Do</td>
            <td>Raj Brar, Sujata Bhatnagar</td>
            <td><embed src="https://www.youtube.com/embed/PtQxO0GUug0"></td>
        </tr>
     </table>
</body>
</html>