Make sure to check your web page (open it in a browser) after applying each CSS property.
Follow the instruction below to create a copy of this page:
- You need to use the elements (tags) as selectors in the css file.
- Start with body tag as a selector. Use color #404040 as the background color of your body tag.
- The elements header, article and footer are nested inside div element. So div is the main tag nesting everything else.
- Apply 100 pixels margin to all four sides of the div element by using margin property.
- Apply 50 pixels padding to all four sides of the div element by using padding property.
- Use background color "white" for the div element by using background-color property
- Add shadow to the div element by using box-shadow property
- Make the edges of the div element round by using border-radius property.
- Add text-align property with a value "center" to header and footer elements
- Apply the following border properties to the top and bottom of the article element.
- border-bottom-width: 5px;
- border-bottom-style: solid;
- border-bottom-color: hotpink;
- Now, it is time to rotate everything.
- Rotate the div element 7 degrees clockwise by using transform property.
- Rotate the other elements 7 degrees counter-clockwise by using transform property.
Replace Your_Full_Name to your real full name in the footer element.