-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (29 loc) · 1.5 KB
/
index.html
File metadata and controls
41 lines (29 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Solution for Technigo Coding Challenge</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- YOUR CODE GOES HERE: -->
<div class="green-box">
<h1>MOB PROGRAMMING</h1>
</div>
<div class="grey-box">
<h3>What is Mob Programming?</h3>
<p> When you hear programming you may think about traditional programming or maybe pair programming.
Mob Programming is a software develompment approach where more than two people working in teams at the same place, at the same time and with the same computer.
Mob Programming are a crowd of people that are sitting down and discussing, shareing ideas, brainstorming, giving feedback, researching and solving a task together.
Its purpose is to make the team more procutive, creative and to make the teammembers learn from each other. For more information click <a href="https://www.coscreen.co/blog/mob-programming-distributed-teams-guide/">here</a> or <a href="https://www.agilealliance.org/resources/experience-reports/mob-programming-agile2014/">there</a>. </p>
</div>
<div class="image-box">
<img src="./Images/people.jpg" alt="Picture of teamwork">
</div>
<div class="blue-box">
<h3>How does Mob Programming work?</h3>
<p>To described Mob Programming the best, klick <a href="https://www.youtube.com/watch?v=SHOVVnRB4h0">here</a>
to see a youtubevideo abot Mob Programming explained by the creater of Mob Programming Woody Zuill </p>
</div>
</body>
</html>