-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgithub.html
80 lines (77 loc) · 3.53 KB
/
github.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mathematical Modelling - OsloMet</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<logo><img src="images/oslomet_logo.png" alt=""> </logo>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./accessibility.html">Accessibility</a></li>
<li><a href="./activity_page.html">Activity</a></li>
</ul>
</nav>
</header>
<article class="git_main">
<h2>Benefits of using Git/Github</h2>
<div class="block">
<img src="images/commit_hist_1.png" alt="Commit history">
<text>
<h3>Version control</h3>
<p>Tracks all changes to your project, allowing you to revert to previous versions if needed.</p>
<h3>Collaboration</h3>
<p>Allows experimenting with new features or designs without affecting the main codebase.</p>
</text>
</div>
<div class="block">
<text>
<h3>Branching and Merging</h3>
<p>Facilitates teamwork by enabling multiple contributors to work on the same project simultaneously.</p>
<h3>Backup and Safety</h3>
<p>Stores your project in the cloud, protecting it from local data loss.</p>
</text>
<img src="images/commit_hist_2.png" alt="Commit history">
</div>
<div class="block">
<img src="images/change_1.png" alt="Changes in files">
<text>
<h3>Transparency</h3>
<p>Keeps a detailed history of changes, making it easy to understand what has been modified and why.</p>
<h3>Issue Tracking</h3>
<p>Helps manage tasks, bugs, and feature requests in an organized way.</p>
</text>
</div>
<div class="block">
<text>
<h3>Open Source Integration</h3>
<p>Allows you to learn from and contribute to similar projects on GitHub.</p>
<h3>Professional Workflow</h3>
<p>Prepares you for industry practices where Git/GitHub is widely used.</p>
</text>
<img src="images/change_2.png" alt="Changes in files">
</div>
</article>
<footer>
<p>© 2024 OsloMet - Mathematical Modelling</p>
<address>
Oslo Metropolitan University - Storbyuniversitetet <br>
Postboks 4, St. Olavs plass <br>
0130 Oslo <br>
Tlf.: 67 23 50 00 <br>
<a href="https://www.oslomet.no/om/kontakt" title="Links to OsloMet contact web page">Kontakt oss</a>
</address>
<ul class="social-links">
<li><a href="https://www.facebook.com/oslomet" aria-label="Facebook"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="https://twitter.com/OsloMet" aria-label="Twitter"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/oslomet/" aria-label="Instagram"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://www.linkedin.com/school/oslomet/?originalSubdomain=no" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</footer>
</body>
</html>