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>™ </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>
In [54]:
from IPython.display import HTML
HTML('index.html')
Out[54]:
In [55]:
%%bash
git add --all :/
git commit -a -m 'save'
git push origin master