Skip to content

Instantly share code, notes, and snippets.

@auser
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save auser/9288156 to your computer and use it in GitHub Desktop.
Save auser/9288156 to your computer and use it in GitHub Desktop.
Base starting point
// Develop our JS here
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Newsly clone</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="script.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<!-- Develop our stuff here -->
</div>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js'>
</script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment