Git Product home page Git Product logo

html_css_bootcamp's Introduction

HTML/CSS Bootcamp

Your task:

There are three folders in this repository: DC_Docs, DC_Blog, and DgtlCrfts. Within each folder is a mockup.jpg file which contains a design for a fictional website. Your task is to implement the design using HTML and CSS. Each design presents a unique set of challenges, but you should be able implement them using the HTML and CSS we've covered in class.

Each folder also contains a /img folder containing images you can use in your implementation.

DC Blog

This design is the easiest of the three. Pay attention to the colors on the page (background color, text color, button color, etc), and make sure to use the color-picking tool we installed on Saturday. Notice that there are two different fonts on the page.

HTML Tags you might use:

  • <img /> for the DigitalCrafts logo
  • <button> for the follow button
  • <a></a>, <ul></ul>, and <li></li> for the toolbars
  • <hr /> for the divider line

CSS you might use:

  • text-align
  • margin: 0 auto; (for centering content)
  • float: left or display: inline-block

BONUS: Try to see if you can get the header to be fixed to the top of the screen.

DgtlCrfts

This design is slightly more complicated than DC Blog. Notice that the image of the Atlanta skyline is behind the main text (this should be your cue to use the background-image CSS property instead of an img HTML tag.)

HTML Tags you might use:

  • <img /> for the DigitalCrafts logo
  • <a></a>, <ul></ul>, and <li></li> for the toolbars
  • A
    or with a background image for the down arrow

CSS you might use:

  • background-image
  • background-position
  • background-size
  • border-radius (used for rounded corners, but can also make square
    s into circles)
  • margin: 0 auto; (for centering content)
  • float: left or display: inline-block
  • position: absolute; (for getting those icons right in the middle of the circle)

BONUS: Instead of using the three icon images in the /img folder, try to implement the icons using pure HTML and CSS (hint: use border-radius and absolute positioning)

DC Docs

This design is the hardest of the three. The navigation panel on the left should be fixed to the screen, and only the right side of the page should scroll. You can try to look at http://underscorejs.org/ to see how they implemented this design.

HTML Tags you might use:

  • <img /> for the DigitalCrafts logo
  • <a></a>, <ul></ul>, and <li></li> for the sidebar navigation
  • <input /> for the search bar (you can use an attribute called "placeholder" )
  • A <div> or <span> with a background image for the down arrow

CSS you might use:

  • float: left; (to stack the sidebar and main content horizontally)
  • the :hover selector to make links highlight when you hover over them
  • border-left: 5px; (for the left side of the quote box)
  • height: 100vw; and width:300px; combined with position: fixed; for the side bar

html_css_bootcamp's People

Contributors

ulysses-salinas avatar adamszaruga avatar

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.