Update I have created a new CSS3-HTML5-Twitter Bootstrap3 Minimalist Design resume template . You can find the new Blogpost and the Free Resume Template here . Lately, I've been looking into responsive design using CSS3 and HTML5. I have used responsive design to setup a Resume with a settings page and a contact form which also responds to the device width. Link to CV You can still find the archived resume presented in this post here . The HTML You will have your standard HTML5 document DOM: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Tudor Anghelina - Resume</title> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> I like to use viewport to fix the scaling issue on iOS devices, by setting the initial-scale to 1. <...