Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Bird Cam</title>
- <style>
- body {
- background-color: #f4f1e8; /* Soft beige background */
- color: #3e2f1d; /* Earthy brown text */
- text-align: center;
- font-family: 'Georgia', serif;
- padding: 20px;
- }
- h1 {
- font-size: 2.5em;
- color: #2f4f2f; /* Deep forest green */
- margin-bottom: 10px;
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
- }
- .stream-container {
- display: inline-block;
- padding: 15px;
- background-color: #ffffff;
- border-radius: 15px;
- border: 3px solid #8b5a2b; /* Wooden brown */
- box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
- position: relative;
- object-fit: contain; /* Ensures the image fits within the container */
- }
- </style>
- </head>
- <body>
- <h1>🐦 Bird Cam!</h1>
- <div class="stream-container">
- <table id="tbl" style="overflow-x:auto;"><tr>
- <td><img src="http://192.168.1.52:81/stream" alt="Live Stream" id="video"></td>
- </tr><tr>
- <td><video controls autoplay width="600" height="60" id="audio"><source src="http://192.168.1.52:82/audio" type="audio/mpeg"></video></td>
- </tr></table>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement