Skip to content

Instantly share code, notes, and snippets.

View abelberhane's full-sized avatar

Abel Berhane abelberhane

  • Orlando, FL
View GitHub Profile

Aligning images

left alignment

This is the code you need to align images to the left:

@abelberhane
abelberhane / GIT Commands
Created January 23, 2018 16:02 — forked from psychok7/GIT Commands
GIT Quick Commands
#On local machine
cd foo (your project folder parent)
git init
git add -A * (doesnt add empty folders, be carefull with netbeans config files)
git commit -m "My initial commit message"
#On local machine, in your git project
git remote add origin https://psychok7@bitbucket.org/psychok7/human-computer-interaction.git
git push origin master
@abelberhane
abelberhane / bootstrapCDN.html
Created August 30, 2017 21:16 — forked from planetoftheweb/bootstrapCDN.html
Bootstrap 3 CDN Page Code
<!-- HEAD SECTION -->
<!-- IE Edge Meta Tag -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">