-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
91 lines (84 loc) · 4.62 KB
/
detail.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
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>First project</title>
<link rel="icon" href="images/profile.jpg" type="images/icon" sizes="16x16">
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div class="flex flex-wrap">
<!-- start column -->
<div class="w-1/3 bg-green-500">
<div class="sidebar p-01">
<div class="logo mb-5">
<a href="index.html">
<img class="rounded-full w-32 h-32 m-auto mt-5" src="images/profile.jpg"/>
</a>
</div>
<div class="text-center text-white pb-10 capitalize">
<h2 class="text-2xl">python & javascript developer</h2>
<p>Md.Bozlur Rosid Sagor</p>
<a href="https://www.facebook.com/mbrsagor">about me</a>
</div>
<div class="text-right text-white pb-10">
<ul class="flex">
<li><a href="#"><svg class="fill-current w-4 h-4 mr-2" viewBox="0 0 20 20"><path d="M13 8V2H7v6H2l8 8 8-8h-5zM0 18h20v2H0v-2z"/></svg></a></li>
<li><a href="#"><svg class="fill-current w-4 h-4 mr-2" viewBox="0 0 20 20"><path d="M13 8V2H7v6H2l8 8 8-8h-5zM0 18h20v2H0v-2z"/></svg></a></li>
</ul>
</div>
</div>
</div>
<!-- /end column -->
<!-- start column -->
<div class="w-2/3 mb-8">
<div class="blog_content p-5 text-justify">
<div class="px-10">
<h2 class="text-red-500 text-lg">5 Biggest Agile User Story Mistakes</h2>
<span class="text-xs">Posted on Wed 30 January 2019 in Teamwork • Tagged with agile</span>
<p class="text-sm mb-3">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text</p>
<div class="mb-5">
<iframe class="border" width="730" height="300" src="https://www.youtube.com/embed/vmaYnpXPaOM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<p class="text-sm mb-3">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book. It has survived not
only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged. It was popularised in the 1960s
with the release of Letraset sheets containing Lorem Ipsum passages,
and more recently with desktop publishing software like Aldus
PageMaker including Lorem Ipsum.
</p>
<pre>
As some role,
I want to be able to do something,
So that I can achieve some goal
</pre>
<p class="text-sm mb-3">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of type
</p>
<h1>User stories != developer stories</h1>
<p class="text-sm">What is the difference? A user story is something a customer wants to achieve, whereas technical tasks are the little things that need to be done before the customer can achieve his or her goal. In other words, you should not convert every request in the backlog into user stories. Instead, have a larger user story that encompasses several technical tasks. <br />See the difference? We don’t describe (or prescribe) implementation details, but instead, focus on what the user wants to achieve. This story is not actionable enough and needs to be split into multiple technical tasks. But most importantly, it acts as a guiding light, a clear test if we are moving in the right direction.</p>
</div>
</div>
</div>
<!-- / end column -->
</div>
</div>
<footer class="text-center bg-green-400 text-white pb-2">
<p>© All rights reserved. developed by <a href="http://www.github.com/sagor09">mbrsagor</a></p>
</footer>
</body>
</html>