diff --git a/index.html b/index.html
index 075ecfa..7c03e2b 100644
--- a/index.html
+++ b/index.html
@@ -51,7 +51,7 @@
marked.use( markedGfmHeadingId.gfmHeadingId() );
// Get the markdown file, convert it to HTML & put it inside the main tag
- fetch( 'https://raw.githubusercontent.com/offa/android-foss/master/README.md' )
+ fetch( 'README.md' )
.then( response => response.text() )
.then( data => {
document.querySelector( 'main' ).innerHTML = marked.parse( data );