In [53]:
%%writefile index.html

<!DOCTYPE html>
<html>
	<head>
		<title>Ruxi</title>
	</head>
	<body>

    <h1> Welcome </h1> 
    
    <body>
    <p>The intent of this blog is to document attempts to <b>do stuff</b>&trade; </p>
    
    More specially, learning HTML, CSS and javascript with my nephew following
    <a href='http://codeacademy.com'>codeacademy</a> excercises
    
    <br><br>
    
    <h1> Tasks </h1>
    <ul>
        <li> get markdown support
        <li> get blogging format 
        <li> plan: try jekyll. tutorials for future reference: <br>
    <a href='https://www.smashingmagazine.com/2014/08/build-blog-jekyll-github-pages/'>
    how to build a blog using jekyll for github pages guide</a>
        
    <ul>
    
    
   
    
	</body>
</html>


Overwriting index.html

In [54]:
from IPython.display import HTML
HTML('index.html')


Out[54]:
Ruxi

Welcome

The intent of this blog is to document attempts to do stuff

More specially, learning HTML, CSS and javascript with my nephew following codeacademy excercises

Tasks


In [55]:
%%bash 
git add --all :/
git commit -a -m 'save'
git push origin master


[master a35b542] save
 2 files changed, 36 insertions(+), 8 deletions(-)
To git@github.com:ruxi/ruxi.github.io.git
   0d91a01..a35b542  master -> master