DEV Community

Cover image for Photographer Portfolio Style with CSS
Heggy Castaneda
Heggy Castaneda

Posted on Edited on

Photographer Portfolio Style with CSS

Photographer Portfolio Demo

To make the text color more blend to its background color, use opacity 50%.

.about-me {
  font-size: 20px;
  opacity: .5;
}
Enter fullscreen mode Exit fullscreen mode
  • CornflowerBlue and azure color go well together

See the Pen mdeKGva by Heggyhere (@heggy231) on CodePen.

  • Typeface is another word for Font-style

  • To change the entire page's font, select body element to style.

  • Add background img to your site:


  body {
    background-image: url("https://s3.amazonaws.com/hypnotize_bg.png");
  }

Enter fullscreen mode Exit fullscreen mode

Top comments (0)