Add CSS rules to articles.css for the given news article webpage that matches the following styling: Both article's images styled with a width of 300px Article's tag styled with: 5px padding all around Font family of Arial Font size of 24px Font color of white Background color of red. Selecting the id of author-name-and-date, style the author name and date with: Font family of Arial Font size of 12px Font color of lightgray Article's text (

and

  1. tags) styled with: Font family of Times New Roman Font size of 16px Font color of gray Article's share links (
  2. tags) styled with: Font family of Arial Font size of 12px Font color of blue Note: Colors, font sizes, padding, etc. must be exact.

Respuesta :

Answer:

Answer is provided in the explanation section

Explanation:

articles.css file:

img {

width: 300px;

}

h1 {

color: #FFFFFF;

font-family: arial, sans-serif;

font-size: 24px;

background-color: red;

padding: 5px 5px 5px;

}

#author-name-and-date {

color: lightgray;

font-family: arial, sans-serif;

font-size: 12px;

}

p , ol {

color: gray;

font-family: "Times New Roman", Times, serif;

font-size: 16px;

}

a {

color: blue;

font-family: arial, sans-serif;

font-size: 12px;

}

ACCESS MORE
ACCESS MORE
ACCESS MORE
ACCESS MORE