andretafta

Starter File_Final Project Github Thematic Class

Feb 23rd, 2026
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>My Git Learning Portfolio</title>
  7.     <style>
  8.         body {
  9.             font-family: Arial, sans-serif;
  10.             background: #f4f6f8;
  11.             margin: 0;
  12.             padding: 0;
  13.         }
  14.         header {
  15.             background: #24292f;
  16.             color: white;
  17.             padding: 20px;
  18.             text-align: center;
  19.         }
  20.         section {
  21.             padding: 20px;
  22.             max-width: 800px;
  23.             margin: auto;
  24.             background: white;
  25.             margin-top: 20px;
  26.             border-radius: 8px;
  27.             box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  28.         }
  29.         h2 {
  30.             color: #24292f;
  31.         }
  32.         footer {
  33.             text-align: center;
  34.             padding: 15px;
  35.             margin-top: 20px;
  36.             color: gray;
  37.         }
  38.     </style>
  39. </head>
  40. <body>
  41.  
  42. <header>
  43.     <h1>My GitHub Learning Portfolio</h1>
  44.     <p>Final Project Git Workflow Practice</p>
  45. </header>
  46.  
  47. <section>
  48.     <h2>Student Information</h2>
  49.     <p><strong>Name:</strong> Your Name</p>
  50.     <p><strong>Class:</strong> Your Class</p>
  51. </section>
  52.  
  53. <section>
  54.     <h2>What I Learned</h2>
  55.     <ul>
  56.         <li>Creating repositories</li>
  57.         <li>Using Git commit</li>
  58.         <li>Pushing and pulling changes</li>
  59.         <li>Working with branches</li>
  60.         <li>Using Pull Requests</li>
  61.     </ul>
  62. </section>
  63.  
  64. <section>
  65.     <h2>My Git Journey</h2>
  66.     <p>
  67.         Write a short reflection about what you learned from Git and GitHub.
  68.     </p>
  69. </section>
  70.  
  71. <footer>
  72.     <p>Created for Git Final Project</p>
  73. </footer>
  74.  
  75. </body>
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment