Nalini1998 / Project_Public

MIT License
2 stars 0 forks source link

10. Review #480

Closed Nalini1998 closed 1 year ago

Nalini1998 commented 1 year ago

Reference Code as below:

style.js

.header {
  /* align the text in the center */
  text-align: left;
  /* make its background color CornflowerBlue */
  background-color: CornflowerBlue;
}

.about-me {
  /* select the .about-me element, and set its font-size */
  font-size: 20px;
  /* use the opacity property to make it 50% transparent */
  opacity: 0.5;
}

//   /* add a font-weight property to make their text bold */
.title {
  font-weight: bold;
}

// Set the color for h1 elements to Azure
h1 {
  color: Azure;
}

// make the font-family of the page Georgia
body {
  font-family: Georgia;
  background-image: url('https://content.codecademy.com/courses/learn-css-selectors-visual-rules/hypnotize_bg.png');
}