Free HTML5, CSS3 & Twitter Bootstrap 3 Minimalist Design Resume
Use the template above to create your own Minimalist Design Resume.
See the live version here
After downloading the .zip file if you try to edit the html file locally, you will need to change the links to the bootstrap stylesheets by adding "http:" before each of the CND hosted bootstrap links, and before the link of the google hosted jQuery library.
Change:
<!-- Google hosted jQuery --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <!-- Latest compiled and minified CSS --> <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"> <!-- Latest compiled and minified JavaScript --> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <!-- Font Awesome CSS --> <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
To:
<!-- Google hosted jQuery --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <!-- Latest compiled and minified CSS --> <link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"> <!-- Latest compiled and minified JavaScript --> <script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <!-- Font Awesome CSS --> <link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
Comments
Post a Comment