Giter VIP home page Giter VIP logo

capstone_project's People

Contributors

drood87 avatar

Watchers

 avatar

capstone_project's Issues

Page Rendering

Nice work creating a web page that closely follows the project specification. Good job with the use of Flex Layout -- the page responds smoothly to changes in browser width.

HTML Source

Your HTML source is neat and well structured. The indentation levels clearly reflect the parent-child relationships between elements.

You can feel good about:

  • Using semantic elements to give the document more formal structure:
    • <header>, <nav>, <section>, <footer>
  • Including comments and whitespace
    • visually breaking up the code into readable chunks
  • Using entity codes where needed: &amp;, &apos;, &copy;
  • Remembering to define alt attributes for the images

Be careful not to overuse <div> elements.

SUMMARY: Meets Expectations

Grade: Meets Expectations

Nice work creating a simple and functional page that follows the project specification.

I like the experimentation with :hover attributes and CSS transitions. You might consider applying those to the 6 course boxes too.

A tip: if you style the "clickable" elements (using the :hover selector), with cursor: pointer;, the mouse pointer will switch to the "pointing hand" when the user hovers over those elements. This is a well established visual clue that the user can click on that item.

Overall, some very clean code with good use of comments and whitespace for dividing the code up into readable paragraphs.

Some further reading:

Keep up the good work!

CSS Source

Your CSS source is also clear and well laid out; good use of comments and whitespace here too.

I would recommend keeping to the convention of using all-lowercase-hyphen-delimited names for classes and IDs:

For example:

capstone_project/style.css

Lines 112 to 120 in c4db4bb

.bannerSection {
display: flex;
align-items: center;
}
.bannerImgContainer {
width: 60%;
margin: 24px 32px;
}

should look like this:

.banner-section {
  display: flex;
  align-items: center;
}

.banner-img-container {
  width: 60%;
  margin: 24px 32px;
}

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.