-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperations.html
More file actions
131 lines (110 loc) · 5.16 KB
/
Copy pathoperations.html
File metadata and controls
131 lines (110 loc) · 5.16 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Operations</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.js"></script>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<link rel="stylesheet" href="styles-ops.css">
<link rel="stylesheet" href="css/animations.css">
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark" id="home">
<!-- Brand/logo -->
<a class="navbar-brand" href="#home">
<img src="includes/DDS-01.png" alt="logo" style="width:40px;">
</a>
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#services">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact-form">Contact</a>
</li>
</ul>
</nav>
<header>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-2">Operations</h1>
<h3 class="animated">People, Product and Profits.</h3>
</div>
</div>
</header>
<div class="container marketing">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Plan. <span class="text-muted">Pathway to Improvement</span></h2>
<p class="lead">Identify the problem, collect relevant data, and understand the problem's root cause,
develop hypotheses about what the issues may be, and decide which one to test.</p>
</div>
<div class="col-md-5">
<img src="includes/concept-1868728.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7 order-md-2">
<h2 class="featurette-heading">Do. <span class="text-muted">Executing the Plan.</span></h2>
<p class="lead"> Develop and implement a solution; decide upon a measurement to gauge its effectiveness,
test the potential solution, and measure the results.
</p>
</div>
<div class="col-md-5 order-md-1">
<img src="includes/welding-2262745.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Check. <span class="text-muted">Evaluate the Outcome.</span></h2>
<p class="lead">Confirm the results through before-and-after data comparison. Study the result, measure
effectiveness, and decide whether the hypothesis is supported or not.
</p>
</div>
<div class="col-md-5">
<img src="includes/space-telescope-561368.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7 order-md-2">
<h2 class="featurette-heading">Act. <span class="text-muted">Internalize Lessons Learned.</span></h2>
<p class="lead">Document the results, inform others about process changes, and make recommendations for
the future PDCA cycles. If the solution was successful, implement it. If not, tackle the next
problem and repeat the PDCA cycle again.</p>
</div>
<div class="col-md-5">
<img src="includes/eraser-3822402.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
<footer class="footer">
<p class="float-right"><a href="#home">Back to top</a></p>
<p>© 2020 Decision and Data Sciences, Inc. · <a href="#">Privacy</a> · <a
href="#">Terms</a></p>
</footer>
<!-- scripts -->
<script>
$(".jumbotron").css({ height: $(window).height() + "px" });
$(window).on("resize", function () {
$(".jumbotron").css({ height: $(window).height() + "px" });
});
</script>
</body>
</html>
</body>
</html>