Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# stutern-git-practice
Repo to teach students about pull request and how to fork
===> Kareem johnbelieve made a change
28 changes: 28 additions & 0 deletions first.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<title>This is me</title>
<link rel="stylesheet" href="style.css">
<script src="main.js" defer></script>
</head>

<body>
<header>
<h1>This is a complete trial</h1>
</header>
<main>
<article>
<p>Its been said a lot of times that detemination is the key for anyone to succes</p>
</article>


</main>
<hr />
<footer>
<p> &reg; JOHN 2020</p>
</footer>
</body>



</html>
1 change: 1 addition & 0 deletions index.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I'm trying to upload a document from the branch of johnbelieve to the master.
2 changes: 2 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
//i dont really know javascript so i will just leave this as a blanks space.
//Thanks for understanding my plight.
23 changes: 23 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
h1
{
text-align: center;
font-size: 30px;
padding: 2px;
margin-top: 2px;
font-family: 'Gamja flower', cursive;
color: blue;
text-shadow: 2px 2px black;
}
p
{
text-align: center;
font-size: 20px;
padding: 5px;
font-family: 'chealsea market', cursive;
}

hr
{
margin-top: 450px;
border: 5px solid black;
}