Please help me with this    Place a magenta border (of 5px) around the entire body of the page. Do not create a CSS class to accomplish this. 2. Place a cyan border (of 5px) around the header of the page. Do not create a CSS class to accomplish this. 3. Place a purple border (of 5px) around the words “Some Science Fiction Movies Worth Watching”. 4. Create a div tag with class ‘movie’ to surround details of each movie, and place a blue border (of 5px) around each movie on this list. 5. Place a green border (of 5px) around each movie director. Do not create a CSS class to accomplish this. 6. Place a black border (of 5px) around every paragraph on the page. Do not create a CSS class to accomplish this.                       EECS1012: Lab 2 - Movie Recommendations           Movie Recommendations     Some Science Fiction Movies Worth Watching   Ghost in the Shell by Mamoru Oshii         The 1995 animated film "Ghost in the Shell," directed by Mamoru Oshii and based on Masamune Shirow's manga of the same name, explores complex themes related to identity, consciousness, and the impact of technology on the human experience. The characters, especially Major Motoko Kusanagi, question the essence of their humanity as their bodies become increasingly augmented by cybernetic technology. The film prompts viewers to consider the implications of blurring the boundaries between human and machine and the societal impact of such advancements.     You can find more information about this movie online on Rotten Tomatoes.   Stalker by Andrei Tarkovsky         Andrei Tarkovsky's film "Stalker," released in 1979, is a movie from the Soviet Union that is loosely based on the science fiction novel "Roadside Picnic" by Arkady and Boris Strugatsky. It revolves around a mysterious guide, known as the Stalker, who leads two clients, a Writer and a Professor, through a forbidden and dangerous area called "the Zone". The Zone is said to have the power to fulfill a person's innermost desires. However, the film suggests that the fulfillment of these desires might not bring happiness. The journey therefore becomes one of self-discovery and about the consequences of pursuing one's desires.     You can find more information about this movie online on Rotten Tomatoes. Alphaville by Jean-Luc Godard         "Alphaville" is a 1965 French New Wave science fiction film directed by Jean-Luc Godard. The movie is set in a dystopian future, and its narrative blends elements of film noir, science fiction, and political allegory. The film's primary setting is the city of Alphaville, a technocratic and emotionless metropolis governed by a powerful computer named Alpha 60. The movie critiques the dehumanizing effects of technocracy, and features a computer system that controls every aspect of society, eliminating individuality and emotional expression.     You can find more information about this movie online on Rotten Tomatoes.       © Most of the text above was written by ChatGPT.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Please help me with this 

 

Place a magenta border (of 5px) around the entire body of the page. Do not create a CSS class to accomplish this.
2. Place a cyan border (of 5px) around the header of the page. Do not create a CSS class to accomplish this. 3. Place a purple border (of 5px) around the words “Some Science Fiction Movies Worth Watching”.
4. Create a div tag with class ‘movie’ to surround details of each movie, and place a blue border (of 5px) around each movie on this list.
5. Place a green border (of 5px) around each movie director. Do not create a CSS class to accomplish this. 6. Place a black border (of 5px) around every paragraph on the page. Do not create a CSS class to accomplish this.           <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>EECS1012: Lab 2 - Movie Recommendations</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>

 

<header>
    <h1> Movie Recommendations </h1>
    <h2> Some Science Fiction Movies Worth Watching </h2>
</header>

 

<div class="movie">
<h2> Ghost in the Shell <span class="director">by Mamoru Oshii</span></h2>
<p>
    <img src="images/ghost.jpeg" alt="Ghost in the Shell image" width="200" height="100">
</p>
<p>
    The 1995 animated film "Ghost in the Shell," directed by Mamoru Oshii and based on Masamune Shirow's manga of the same name, explores complex themes related to identity, consciousness, and the impact of technology on the human experience. The characters, especially Major Motoko Kusanagi, question the essence of their humanity as their bodies become increasingly augmented by cybernetic technology. The film prompts viewers to consider the implications of blurring the boundaries between human and machine and the societal impact of such advancements.
</p>
<p>
    You can find more information about this movie online on <a target="_blank" href="https://www.rottentomatoes.com/m/ghost_in_the_shell">Rotten Tomatoes</a>.
</p>

 

<div class="movie">
<h2>Stalker <span class="director"> </span>by Andrei Tarkovsky</span> </h2>
<p>
    <img src="images/stalker.jpeg" alt="Stalker image" width="200" height="150">
</p>
<p>
    Andrei Tarkovsky's film "Stalker," released in 1979, is a movie from the Soviet Union that is loosely based on the science fiction novel "Roadside Picnic" by Arkady and Boris Strugatsky. It revolves around a mysterious guide, known as the Stalker, who leads two clients, a Writer and a Professor, through a forbidden and dangerous area called "the Zone". The Zone is said to have the power to fulfill a person's innermost desires. However, the film suggests that the fulfillment of these desires might not bring happiness. The journey therefore becomes one of self-discovery and about the consequences of pursuing one's desires.
</p>
<p>
    You can find more information about this movie online on <a target="_blank" href="https://www.rottentomatoes.com/m/1043378-stalker">Rotten Tomatoes</a>.
</p>
<div class="movie">
<h2> Alphaville <span class="director"> </span>by Jean-Luc Godard</span></h2>
<p>
    <img src="images/alphaville.jpeg" alt="Alphaville image" width="200" height="150">
</p>
<p>
    "Alphaville" is a 1965 French New Wave science fiction film directed by Jean-Luc Godard. The movie is set in a dystopian future, and its narrative blends elements of film noir, science fiction, and political allegory. The film's primary setting is the city of Alphaville, a technocratic and emotionless metropolis governed by a powerful computer named Alpha 60. The movie critiques the dehumanizing effects of technocracy, and features a computer system that controls every aspect of society, eliminating individuality and emotional expression.
</p>
<p>
    You can find more information about this movie online on <a target="_blank" href="https://www.rottentomatoes.com/m/alphaville">Rotten Tomatoes</a>.
</p>

 

<footer>
    <p> &copy; Most of the text above was written by ChatGPT. </p>
</footer>

 

</body>
</html
Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Hyperlinks
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education