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
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Command Line and Git SBA</h1>
<script src="index.js"></script>
</body>
</html>

22 changes: 22 additions & 0 deletions steps3-7htmlfile.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Steps for HTML file
pwd
ls
git init
git clone https://github.com/bossladyofthefuture/sba-command-line-git.git
echo "<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Command Line and Git SBA</h1>
<script src="index.js"></script>
</body>
</html>
" > index.html
git add .
git commit -m "Added index.html file"
git branch -M main
git push -u origin