Skip to content

Commit 3ab99bb

Browse files
committed
changes
1 parent 2c3ccc1 commit 3ab99bb

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

index.html

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,20 @@
44
<meta charset="UTF-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<link rel="stylesheet" href="./style.css">
7+
<link rel="stylesheet" href="./style.css" />
88
<title>API Workflow</title>
99
</head>
1010
<body>
1111
<h1>API WORKFLOW</h1>
1212
<p>
1313
Using JSONPLACEHOLDER API for testing your understanding of API callback
1414
</p>
15-
<section class="api-details"></section>
15+
<section class="api-details-wrap">
16+
<h3>All Post</h3>
17+
<div class="api-details-post"></div>
18+
<h4>All users</h4>
19+
<div class="api-details-users"></div>
20+
</section>
1621

1722
<script src="./app.js"></script>
1823
</body>

style.css

+9-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,13 @@ span {
2222
.item-group {
2323
margin: 1rem;
2424
border-top: 1px solid black;
25-
border-bottom: 1px solid black;
25+
/* border-bottom: 1px solid black; */
26+
}
27+
28+
.api-details-post,
29+
.api-details-users {
30+
height: 80vh;
31+
overflow-x: hidden;
32+
margin-bottom: 3rem;
33+
width: 100%;
2634
}

0 commit comments

Comments
 (0)