Untitled

mail@pastecode.io avatar
unknown
plain_text
15 days ago
817 B
1
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Movie Details</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <h1 id="title">Movie/Series Title</h1>
        <img id="poster" src="movie-poster.jpg" alt="Movie Poster">
        <p><strong>Release Date:</strong> <span id="release-date">2024-09-01</span></p>
        <p><strong>Genre:</strong> <span id="genre">Action, Drama</span></p>
        <p><strong>Description:</strong></p>
        <p id="description">This is a brief description of the movie or series. It gives a summary of the plot, characters, and setting.</p>
    </div>

    <script src="script.js"></script>
</body>
</html>
Leave a Comment