File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 4
4
< meta charset ="UTF-8 " />
5
5
< meta http-equiv ="X-UA-Compatible " content ="IE=edge " />
6
6
< 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 " / >
8
8
< title > API Workflow</ title >
9
9
</ head >
10
10
< body >
11
11
< h1 > API WORKFLOW</ h1 >
12
12
< p >
13
13
Using JSONPLACEHOLDER API for testing your understanding of API callback
14
14
</ 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 >
16
21
17
22
< script src ="./app.js "> </ script >
18
23
</ body >
Original file line number Diff line number Diff line change @@ -22,5 +22,13 @@ span {
22
22
.item-group {
23
23
margin : 1rem ;
24
24
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% ;
26
34
}
You can’t perform that action at this time.
0 commit comments