Home HTML Data Types DOM JavaScript JS Debugging Review Ticket

Working HTML code cell

  • Below is a wireframe for an HTML element you will create. A wireframe is a rough visual representation of HTML elements on a page and isn’t necessarily to scale or have the exact styling that the final HTML will have. Using the syntax above, try to create an HTML snippet that corresponds to the below wireframe.
  • The “a tags” can contain any links that you want
%%html

<html lang="eng-US">

<div>
    <h2> Interstellar</h2>
   
    <p><strong> Basic Synopsis</strong> 

        <br><br>
        In Earths future, a global crop blight and second Dust Bowl are slowly rendering the planet uninhabitable. Professor Brand (Michael Caine), a brilliant NASA physicist, is working on plans to save mankind by transporting Earth's population to a new home via a wormhole. But first, Brand must send former NASA pilot Cooper (Matthew McConaughey) and a team of researchers through the wormhole and across the galaxy to find out which of three planets could be mankind's new home.
        <br><br>
    </p>


    <button> Actors<br><br>
            
            1. Matthwe McConaughey<br>
            2. Anne Hathaway<br>
            3. Jessica Chastain <br>
            4. Bill Irwin<br>
            5. Micheal Cane<br>
            
            
    </button>
    <br>
    <button onclick="goToInterstellarWiki()">Go to Interstellar Wiki</button>

    <script>
        function goToInterstellarWiki() {
            // Redirect to the Interstellar Wikipedia page
            window.location.href = "https://en.wikipedia.org/wiki/Interstellar_(film)";
        }
</script>

</div>
<br>
<center>
    <img src= "https://upload.wikimedia.org/wikipedia/en/b/bc/Interstellar_film_poster.jpg" alt="Interstellar_film_poster" height = "320" width ="200">
    </center>
<br><br>
<div>

    <h2>Martian</h2>
    <center>
    <img src="https://upload.wikimedia.org/wikipedia/en/c/cd/The_Martian_film_poster.jpg" alt="The_Martian_film_poster" height="320" width="200"> </center>

    <a href="https://www.imdb.com/title/tt3659388/">Martian: IMDb</a><br>
    <a href="https://en.wikipedia.org/wiki/The_Martian_(film)">Martian: Wiki</a>

    <br><br>
     
    <p> <strong> Basic Synopsis</strong>
        <br><br>
        When astronauts blast off from the planet Mars, they leave behind Mark Watney (Matt Damon), presumed dead after a fierce storm. With only a meager amount of supplies, the stranded visitor must utilize his wits and spirit to find a way to survive on the hostile planet. Meanwhile, back on Earth, members of NASA and a team of international scientists work tirelessly to bring him home, while his crew mates hatch their own plan for a daring rescue mission.</p>
        <br>
    
        
</div>
</html>

Interstellar

Basic Synopsis

In Earths future, a global crop blight and second Dust Bowl are slowly rendering the planet uninhabitable. Professor Brand (Michael Caine), a brilliant NASA physicist, is working on plans to save mankind by transporting Earth's population to a new home via a wormhole. But first, Brand must send former NASA pilot Cooper (Matthew McConaughey) and a team of researchers through the wormhole and across the galaxy to find out which of three planets could be mankind's new home.



Interstellar_film_poster


Martian

The_Martian_film_poster
Martian: IMDb
Martian: Wiki

Basic Synopsis

When astronauts blast off from the planet Mars, they leave behind Mark Watney (Matt Damon), presumed dead after a fierce storm. With only a meager amount of supplies, the stranded visitor must utilize his wits and spirit to find a way to survive on the hostile planet. Meanwhile, back on Earth, members of NASA and a team of international scientists work tirelessly to bring him home, while his crew mates hatch their own plan for a daring rescue mission.