Untitled

 avatar
unknown
plain_text
2 years ago
2.7 kB
7
Indexable
<!-- <!DOCTYPE html>
<html>

<head>
    <title>Delicious Eats Restaurant</title>
    <style>
        /* Internal CSS */
        body {
            font-family: Arial, sans-serif;
            color: #333;
        }

        h1 {
            text-align: center;
            margin-top: 50px;
            font-size: 48px;
        }

        img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }

        table {
            margin: 50px auto;
            border-collapse: collapse;
        }

        td,
        th {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        th {
            background-color: #ddd;
        }
    </style>
</head> -->
<!DOCTYPE html>
<html>

<head>
    <title>Delicious Eats Restaurant</title>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
    <h1>Delicious Eats Restaurant</h1>
    <img src="restaurant.jpg" alt="Delicious Eats Restaurant" width="300" height="300">
    <table>
        <tr>
            <th>Day</th>
            <th>Hours</th>
        </tr>
        <tr>
            <td>Monday</td>
            <td>11:00 AM - 9:00 PM</td>
        </tr>
        <tr>
            <td>Tuesday</td>
            <td>11:00 AM - 9:00 PM</td>
        </tr>
        <tr>
            <td>Wednesday</td>
            <td>11:00 AM - 9:00 PM</td>
        </tr>
        <tr>
            <td>Thursday</td>
            <td>11:00 AM - 9:00 PM</td>
        </tr>
        <tr>
            <td>Friday</td>
            <td>11:00 AM - 10:00 PM</td>
        </tr>
        <tr>
            <td>Saturday</td>
            <td>12:00 PM - 10:00 PM</td>
        </tr>
        <tr>
            <td>Sunday</td>
            <td>12:00 PM - 9:00 PM</td>
        </tr>
    </table>
    <!-- <iframe width="560" height="315" src="https://www.youtube.com/embed/GlrxcuEDyF8" title="YouTube video player"
        frameborder="0"
        allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
        allowfullscreen>
    </iframe> -->
    <center>
        <iframe width="535" height="382" src="https://www.youtube.com/embed/tpSw_nu_kQw"
            title="Sling Restaurant &amp; Cafe Promo Video" frameborder="0"
            allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
            allowfullscreen>
        </iframe>
    </center>
    <p style="text-align: center;">
        Visit us at Main Street, Anytown, Pune<br>
        Call us at +91 1234567899<br>
        <a href="mailto:info@deliciouseats.com">info@deliciouseats.com</a>
    </p>
</body>

</html>
Editor is loading...