-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
46 lines (39 loc) · 2.07 KB
/
about.html
File metadata and controls
46 lines (39 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body class="about-page">
<div class="navigation-bar">
<img src="images/nhs-reverse-logo.png">
<a class="active" href="contact.html">Contact</a>
<a class="active" href="team.html">Meet The Team</a>
<a class="active" href="about.html">About</a>
<a class="active" href="index.html">Home</a>
</div>
<div class="about-heading">
<h1>About this website</h1>
<p>
Welcome to the NHS Git Training website! This platform is designed to help NHS staff and teams get up to speed with Git and GitHub, empowering them to efficiently collaborate on code and manage projects. Whether you're a beginner or have some experience with version control, this site will guide you through the basics, best practices, and advanced Git techniques.
</p>
<p>
Our goal is to make Git more accessible and practical for everyone, enabling you to use it confidently in your everyday workflows. Through a series of tutorials, exercises, and resources, we aim to make version control an easy-to-understand and integral part of your development process.
</p>
<p>
What you will learn:
<ul>
<li><b>Git Basics: </b>How to create repositories, make commits, and manage branches.</li>
<li><b>Collaboration:</b> Learn how to collaborate with others using GitHub, pull requests, and team workflows.</li>
<li><b>Version Control Best Practices:</b> Discover the best ways to manage changes, resolve conflicts, and keep your project organized.</li>
</ul>
</p>
<p>
We hope this site helps you gain a deeper understanding of Git and enables you to apply these skills to your projects in the NHS.
</p>
</div>
<script src="javascript/app.js"></script>
</body>
</html>