Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>My Git Learning Portfolio</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background: #f4f6f8;
- margin: 0;
- padding: 0;
- }
- header {
- background: #24292f;
- color: white;
- padding: 20px;
- text-align: center;
- }
- section {
- padding: 20px;
- max-width: 800px;
- margin: auto;
- background: white;
- margin-top: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 5px rgba(0,0,0,0.1);
- }
- h2 {
- color: #24292f;
- }
- footer {
- text-align: center;
- padding: 15px;
- margin-top: 20px;
- color: gray;
- }
- </style>
- </head>
- <body>
- <header>
- <h1>My GitHub Learning Portfolio</h1>
- <p>Final Project Git Workflow Practice</p>
- </header>
- <section>
- <h2>Student Information</h2>
- <p><strong>Name:</strong> Your Name</p>
- <p><strong>Class:</strong> Your Class</p>
- </section>
- <section>
- <h2>What I Learned</h2>
- <ul>
- <li>Creating repositories</li>
- <li>Using Git commit</li>
- <li>Pushing and pulling changes</li>
- <li>Working with branches</li>
- <li>Using Pull Requests</li>
- </ul>
- </section>
- <section>
- <h2>My Git Journey</h2>
- <p>
- Write a short reflection about what you learned from Git and GitHub.
- </p>
- </section>
- <footer>
- <p>Created for Git Final Project</p>
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment