Add one more file in our repository
Let us add an index.html file to the repository. The following file is perfect for this purpose.
index.html
FILE: index.html
<html> <body> <iframe src="lib/hello.html" width="200" height="200" /> </body> </html>
Add the file and make a commit.
RUN:
git add index.html git commit -m "Added index.html."
Now when you open index.html, you should see a part of the hello page in a small window.