Last active
March 24, 2016 02:54
-
-
Save inotives/88ff6a01dd44b635220b to your computer and use it in GitHub Desktop.
standard template for html 5 with bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>Sample</title> | |
<!-- Styles Css --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/paper/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> | |
<h1>Title</h1> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, illum dignissimos saepe necessitatibus quasi eos pariatur assumenda! Autem, id laboriosam dolorum. Error mollitia consequatur ipsa est doloribus quia laudantium velit!</p> | |
<!-- Scripts --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | |
<script src="js/app.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment