Coder Social home page Coder Social logo

dasmotos_arts_crafts's Introduction

DASMOTOS_ARTS_CRAFTS

dasmotos_arts_crafts's People

Contributors

yellowzapp avatar

Watchers

James Cloos avatar

dasmotos_arts_crafts's Issues

SUMMARY

Grade: Meets expectations

Summary:
Nice job on this project! I love your use of <div> elements, comments, and your use of locally stored images with descriptive alt attributes in your HTML.

A couple things to work on here would be: 1. using group selectors to make your CSS more concise and 2. possibly changing your current group selectors to descendant selectors (based on your intention there).

Next, as a stretch goal, I challenge you to research and implement media queries to make your page totally responsive for all screen widths. This is a challenge I think you are ready for based on your work here! Here are a couple resources to get you started: https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries and https://css-tricks.com/snippets/css/media-queries-for-standard-devices/

Group selectors in CSS

Simplify! Consider using group selectors for any repeated styles in your CSS. For example, I'm seeing font-weight bold; repeated throughout your CSS.

Also, not sure if this was intentional, but I see your are using group selectors on lines 18-19, 27-28, 35-36, and 43-44. These look like they were meant to be descendant selectors instead. If that was your intention, I would remove the comma and return on those lines.

For example, you would want to use:

.item h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: black;
}

instead of:

.item,
h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: black;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.