Merge branch 'main' of https://github.com/BlandineBajard/tp-figma-js
This commit is contained in:
commit
4552e2a0ea
2 changed files with 71 additions and 4 deletions
19
index.html
19
index.html
|
@ -4,10 +4,23 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Document</title>
|
<title>API REQRES</title>
|
||||||
<script src="script.js" defer></script>
|
<script src="../script.js" defer></script>
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="../style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<section>
|
||||||
|
<h1>Our Team Members</h1>
|
||||||
|
<div>
|
||||||
|
<h2 id
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
54
postman-reqres
Normal file
54
postman-reqres
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"page": 1,
|
||||||
|
"per_page": 6,
|
||||||
|
"total": 12,
|
||||||
|
"total_pages": 2,
|
||||||
|
"data": [
|
||||||
|
{
|
||||||
|
"id": 1,
|
||||||
|
"email": "george.bluth@reqres.in",
|
||||||
|
"first_name": "George",
|
||||||
|
"last_name": "Bluth",
|
||||||
|
"avatar": "https://reqres.in/img/faces/1-image.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 2,
|
||||||
|
"email": "janet.weaver@reqres.in",
|
||||||
|
"first_name": "Janet",
|
||||||
|
"last_name": "Weaver",
|
||||||
|
"avatar": "https://reqres.in/img/faces/2-image.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 3,
|
||||||
|
"email": "emma.wong@reqres.in",
|
||||||
|
"first_name": "Emma",
|
||||||
|
"last_name": "Wong",
|
||||||
|
"avatar": "https://reqres.in/img/faces/3-image.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 4,
|
||||||
|
"email": "eve.holt@reqres.in",
|
||||||
|
"first_name": "Eve",
|
||||||
|
"last_name": "Holt",
|
||||||
|
"avatar": "https://reqres.in/img/faces/4-image.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 5,
|
||||||
|
"email": "charles.morris@reqres.in",
|
||||||
|
"first_name": "Charles",
|
||||||
|
"last_name": "Morris",
|
||||||
|
"avatar": "https://reqres.in/img/faces/5-image.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 6,
|
||||||
|
"email": "tracey.ramos@reqres.in",
|
||||||
|
"first_name": "Tracey",
|
||||||
|
"last_name": "Ramos",
|
||||||
|
"avatar": "https://reqres.in/img/faces/6-image.jpg"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"url": "https://reqres.in/#support-heading",
|
||||||
|
"text": "To keep ReqRes free, contributions towards server costs are appreciated!"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue