Computer Science, asked by teshutec, 1 month ago

(5) 5. Create a web page with the details given: (1) Choose the title for the web page as "PRINTING”. (2) Set the TEXT color to be Yellow for the entire page. (3) Apply Bold and italics on the heading “3D PRINTING”. (4) Choose font type “Algerian” for the entire page. (5) Add Horizontal rule in gray color, below the heading only (6) Type the following text The world is privy on a daily-and often hourly-basis to a host of incredible new innovations being presented by brilliant 3D printing innovators, from the flashiest of items like 3D printed rocket parts to gruesome 3D printed special effects in the film industry. It's also becoming more common to see 3D printing in areas like jewelry and apparel and really, almost everywhere.​

Attachments:

Answers

Answered by nish5555568656
0

Answer:

Create a web page with the details given: (1) Choose the title for the web page as "PRINTING”. (2) Set the TEXT color to be Yellow for the entire page. (3) Apply Bold and italics on the heading “3D PRINTING”. (4) Choose font type “Algerian” for the entire page. (5) Add Horizontal rule in gray color, below the heading only (6) Type the following text The world is privy on a daily-and often hourly-basis to a host of incredible new innovations being presented by brilliant 3D printing innovators, from the flashiest of items like 3D printed rocket parts to gruesome 3D printed special effects in the film industry. It's also becoming more common to see 3D printing in areas like jewelry and apparel and really, almost everywhere.

Explanation:

please mark me as brainliest and give thanks I really need it

Answered by Krish7521
0

Answer:<!DOCTYPE html>

<html>

<head>

 <title>PRINTING</title>

 <style>

   body {

     color: yellow;

     font-family: Algerian;

   }

   h1 {

     font-weight: bold;

     font-style: italic;

   }

   hr {

     border: none;

     border-top: 2px solid gray;

   }

   .green-text {

     color: green;

   }

 </style>

</head>

<body>

 <h1>3D PRINTING</h1>

 <hr>

 <p>

   The world is privy on a daily-and often hourly-basis to a host of incredible new innovations being presented by brilliant 3D printing innovators, from the flashiest of items like <span class="green-text">(3D printed rocket parts)</span> to gruesome <span class="green-text">(3D printed special affects)</span> in the film industry. It's also becoming more common to see 3D printing in areas like <span class="green-text">(jewelry)</span> and <span class="green-text">(apparel)</span> and really, almost everywhere.

 </p>

</body>

</html>

Explanation:

Here is the code as you asked

Similar questions