-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchitecture.html
More file actions
124 lines (107 loc) · 5.52 KB
/
Copy patharchitecture.html
File metadata and controls
124 lines (107 loc) · 5.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Architecture</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-arch.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="index.html">
<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">Architecture</h1>
<h3 class="animated">Innovative designs to enhance the human experience.</h3>
</div>
</div>
</header>
<!--about me-->
<div>
<hr class="featurette-divider" id="about">
</div>
<div class="portfolio-header" style="text-align: center;">
<h1>Enterprise Architecture</h1>
</div>
<div class="container-fluid">
<div class="row featurette">
<div class="col-sm-3 col-md-7">
<h2 class="featurette-heading">Destined to be... <span class="text-muted"> efficacious </span></h2>
<p class="lead"> US Code 44, Section 3601 Definition of Enterprise Architecture: “enterprise
architecture” means— (i)a strategic information asset base,
which defines the mission; (ii)the information necessary to perform the mission; (iii)the
technologies necessary to perform the mission; and
(iv)the transitional processes for implementing new technologies in response to changing mission
needs; and (B)includes— (i)a baseline architecture;
(ii)a target architecture; and (iii)a sequencing plan;</p>
<p class="lead"> EA is not just about IT. It's about understanding the mission in sufficient detail that
you can make informed purchase decisions across the enterprise,
in context and in a timely manner. ~Wikipedia </p>
<p class="lead"> Architecture is more than diagrams and inventory. Good architecture will account for
all the interface objects within an organization. <strong> GREAT </strong> architecture
paints a picture allowing leadership to fully rationalize the enterprise for sustainment,
investment/divestment and optimization. </p>
<p class="lead"> Peter Nichols said" Data management, application development, and IT
infrastructure—when
combined with enterprise architecture—influences cost, redundancy, integration, agility, reuse, and
standardization. Business process injects modularity, automation, integration agility, and address
redundancy. Typically, business-process benefits impact enterprise architecture maturity and
governance.
These controls act as a supporting framework for decision making.</p>
<p class="lead"> Enterprise architecture improves organizational impacts through productivity, agility,
product and service timeliness,
revenue growth, and cost reduction. Each of these individually can make your case for enterprise
architecture. However,
combined, these benefits form a compelling business case.</p>
</p>
</div>
<div class="col-sm-5 col-md-5">
<img class="featurette-image img-fluid mx-auto" src="includes/architect-254579.jpg"
alt="picture of cat and his servant">
</div>
</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>