Skip to content

saeta-eth/test-frontend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ACD - Frontend Test

Using the following technology:

Using the following psd template. Break it down into html/css using your own resume for the content. Store your source files in a folder called /src and have it compile to a /public folder. Make sure it works on IE10+, Chrome and Firefox. For bonus points it should resize for tablet and mobile.

Make sure you don't use a lot of classes in your html i.e. the way bootstrap does it .col-md-6. Instead use lost and descriptive tags like .profile. Try to also limit the amount of divs you use.

For example:

  <div class="field">
    <label>First Name</label>
    <input type="text" name=user[first_name]" placeholder="First Name">
  </div>

Instead of this this:

 <div class="field">
    <label>Name</label>
    <div class="two fields">
      <div class="field">
        <input type="text" name="user[first_name]" placeholder="First Name">
      </div>
    </div>
  </div>
Please fork this repository and commit each step of your process.

Releases

No releases published

Packages

No packages published

Languages

  • CSS 44.2%
  • HTML 32.0%
  • JavaScript 17.6%
  • CoffeeScript 6.2%