html
html
1
2
3
4
5
6
7
8
9
10
11
<!-- Created by Ade Bakari-->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
/* Created by Ade Bakari */
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
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
// Created by Ade Bakari
// this is usual format to work with data (e.g. data pulled from the database or api): ARRAY of OBJECTS
const data = [
{
id: 5479823,
first_name: 'John',
last_name: 'Doe',
country_represented: 'UK'
},
{
id: 41479803,
first_name: 'Ann',
last_name: 'Williams',
country_represented: 'USA'
},
{
id: 2279800,
first_name: 'Frank',
last_name: 'Taylor',
country_represented: 'Australia'
},
{
id: 5879120,
first_name: 'Mary',
last_name: 'Smith',
country_represented: 'Canada'
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run