Step 5

Add a new file, index.html, to sleeptime-git folder with the following content:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>SleepTime App</title>
</head>
<body>
  
</body>
</html>

Stage this file and commit the changes:

git add index.html
git commit -m "Add boilerplate HTML"