Skip to content

Homework for the fifth week of the Web Engineering course of MEI.

Notifications You must be signed in to change notification settings

engwebUM/homework-week5

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Homework - Week 5

This week we're going to be writing some HTML and CSS.

Go to https://blog.groupbuddies.com, you should now see a list of articles. The goal of this exercise is to "copy" this page using only HTML and CSS.

Mandatory goals:

  1. Look very similar to the original

  2. Have more than one example articles

  3. HTML should focus on structure and be semantic

  4. CSS should be the only thing giving style

Extras:

  1. Create a Rails app with your code (static content)

  2. Add dynamic content to the page

FAQ

  1. Should I write CSS inline?

No. This is what inline CSS looks like:

<div style="color: red;">Some content</div>

You should not do this, unless you are styling an email message.

  1. How to install Rails?

After having Ruby set up, run gem install rails. If at some point you are requested to run this command with sudo, don't. That means your doing something wrong.

  1. How to generate a migration?

First of all, you only need a migration when trying to solve part 6 of the exercise. If you are doing that, run rails generate migration create_posts.

About

Homework for the fifth week of the Web Engineering course of MEI.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published