Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding an index page to my-branch #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>Git Demo</title>
<style>
main { width: 70%; margin: auto; }
</style>
</head>

<body>
<main>
<h1>My First Open Source Contribution</h1>
<p>I am following an <a href="https://twitter.com/denicmarko/status/1522876362377338880">awesome tweet</a> by Marko Denic encouraging his Web Development followers to make their first open source contributions. I have followed the step-by-step guide provided in a link on the tweet. This code is part of Step 6 in the guide.</p>
<p>I think Marko's guide skipped a step after cloning the repository in Step 3. I think we should change to the newly created directory, <blockquote><code>cd git-demo</code></blockquote> before Step 4.</p>
</main>
</body>
</html>