This Twitter home page layout is fairly standard 2-column layout. If you view it on a browser, it's a responsive layout, but we're going to build it from the screenshot as a 2-column fix-width layout.
More instructions to come
- Fork this repository, create index.html and css files. When you have something to show create a pull request back to this repository master branch and we'll review the code in the pull request diff.
- Focus on clean code, semantic HTML, separation of content from presentation, and browser compatibility.
- The layout is provided as a .png in the assets folder. Open this in your image editor and use it to measure margins, pick colors, and everything else you need to do to build a website from a layout.
- Table-based layouts- Seriously old-school. Don't do this.
- Float-based layouts- How things have been done for years. A solid choice for consistent browser support.
- Flexbox layout- The new hotness. Browser support looks pretty good these days: (http://caniuse.com/#search=flexbox). I'd say this is a solid choice to be very up-to-date with current trends. Bonus points if you use Flexbox and provide a float-based fallback if browser support isn't there.
- An image editor, like Photoshop, or something cheaper like Pixelmator, or something free like GIMP.
- A text editor like Github's Atom, Adobe's Brackets, Sublime Text, or Notepad++.
- Git, either using the command line (like a boss), or using one of these GUIs.
- A GitHub account.
- HTML/CSS. Let's keep it up-to-date and use semantic HTML5.
- A CSS pre-processor like SASS or LESS, if you wish.
- Build tools like Grunt or Gulp.
- A CSS reset like reset.css or normalize.css
Feel free to over-engineer your build tools as much as you want, but keep in mind that the browser speaks HTML, CSS, and Javascript. Pre-processors like SASS and LESS might fall out of favor and build tools like Grunt and Gulp are very flavor-of-the-week.
- A drag & drop editor like Dreamweaver or FrontPage.
- A front-end framework like Bootstrap or Zurb Foundation. Let's walk before we run.