-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinfographics.html
173 lines (172 loc) · 4.28 KB
/
infographics.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"
></script>
<script>
$(function () {
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
<!--Title-->
<title>Infographics</title>
<!--Favicon-->
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
<!--Encoding-->
<meta charset="UTF-8" />
<!--Metatext-->
<meta name="Portfolio" />
<!--SEO Keywords-->
<meta
name="keywords"
content="portfolio, coding-boot-camp, technical-writing, documentation, programming, engineering, slate"
/>
<!--Author-->
<meta name="author" content="Melissa Kinsey" />
<!--Viewport Dimensions-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Bootstrap Link-->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
/>
<!-- Google Fonts Link -->
<link
href="https://fonts.googleapis.com/css2?family=Red+Rose:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<!--CSS Link-->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!--NAV HEADER-->
<div id="header"></div>
<!--BEGIN CONTAINER-1-->
<div class="container-1">
<div class="jumbotron">
<div class="container text-center">
<img src="assets/name-5.png" width="50%" />
<p id="jumbotron">
No learner wants to be greeted with a wall of text when they launch a course. Colorful diagrams and other illustrations make courses more inviting, and they convey complex concepts better than words alone.
</p>
</div>
</div>
</div>
<!--BEGIN CONTAINER-2-->
<div class="container-fluid bg-3 text-center">
<h1 class="special">Infographics</h1>
<div class="row justify-items-center">
<div class="col-full">
<p>
<img src="assets/AMZN-agent-workflow.png" style="width: 200%"
alt="Infographic showing the agent SDK workflow" />
</p>
</div>
<div class="legend-bar">
Agent SDK workflow
</div>
</div>
</div>
<br>
<div class="row justify-items-center">
<div class="col-full">
<p>
<img src="assets/AMZN-dynamic-inputs.png" style="width: 200%"
alt="Infographic showing dynamic inputs to an agent SDK" />
</p>
</div>
<br>
<div class="legend-bar">
Dynamic inputs to an SDK
</div>
</div>
</div>
<br>
<br>
<div class="row justify-items-center">
<div class="col-full">
<p>
<img src="assets/AMZN-request-handler.png" style="width: 200%"
alt="Infographic showing how an agent receives and responds to requests" />
</p>
</div>
<br>
<br>
<div class="legend-bar">
Agent request handler
</div>
</div>
</div>
<br>
<br>
<div class="row justify-items-center">
<div class="col-full">
<p>
<img src="assets/CH-ordering-process.png" style="width: 200%" alt="Infographic showing the API ordering process" />
</p>
</div>
<br>
<br>
<div class="legend-bar">
API ordering process
</div>
</div>
</div>
<br>
<br>
<div class="row justify-items-center">
<div class="col-full">
<p>
<img src="assets/CH-OAuth-client-server-infographic.png" style="width: 150
%" alt="Infographic showing the OAuth token request workflow" />
</p>
</div>
<br>
<br>
<div class="legend-bar">
OAuth token request
</div>
</div>
</div>
<br>
<br>
<br>
<div class="row justify-items-center">
<div class="col-full">
<p>
<img src="assets/auth-before-after.png" style="width: 200%" alt="Infographic showing implicit and explicit authorization" />
</p>
</div>
<br>
<br>
<div class="legend-bar">
Implicit and explicit authorization
</div>
</div>
</div>
<br>
<br>
<div class="row justify-items-center">
<div class="col-full">
<p>
<img src="assets/CH-uml-offer-config.png" style="width: 200%" alt="Offer configuration in a payment API" />
</p>
</div>
<br>
<br>
<div class="legend-bar">
Offer configuration in a payment API (before, <i>left</i>; after, <i>right</i>)
</div>
</div>
</div>
<br>
<br>
<!--FOOTER-->
<div id="footer"></div>
</body>
<!--JQuery SCRIPTS-->
</html>