mordancy's mind

Create a bitbucket static hosted website for your project or repository

Create a static website for your bitbucket project. Create a new repo <username>.bitbucket.io (example mordancy.bitbucket.io). Create an initial html document and commit. The website is available almost immediately using the repo name as the url (example: http://mordancy.bitbucket.io).

--- sample index.html file ---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
  <title>SOME TITLE FOR THE SITE</title>
    <meta name="description" content="test project for git pages">
     <meta name="author" content="someone">
  <link rel="stylesheet" href="css/styles.css">
</head>
<body>
  <script src="js/scripts.js"></script>
  <h1>TEST PAGE</h1>
   <br/> 
   <h1>
     <a href="http://google.com">goto Google</a>
   </h1>
</body>
</html>
--- EOF ---