-
Notifications
You must be signed in to change notification settings - Fork 0
/
best-jobs-portugal-2022.html
112 lines (110 loc) · 3.84 KB
/
best-jobs-portugal-2022.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Best Jobs in Portugal - 2022</title>
<!-- Bootstrap CSS (Optional, for basic styling) -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- Chart.js library -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<!-- Optional: Add CSS for custom styling -->
<style>
/* Add your custom CSS styles here */
</style>
</head>
<body>
<div class="container mt-5">
<h1 class="text-center mb-4">Best Jobs in Portugal - 2022</h1>
<table class="table table-bordered">
<thead>
<tr>
<th>Job Title</th>
<th>Demand</th>
<th>Salary</th>
<th>Growth Prospects</th>
</tr>
</thead>
<tbody>
<tr>
<td>IT Professionals</td>
<td>High</td>
<td>Competitive</td>
<td>Promising</td>
</tr>
<tr>
<td>Healthcare Workers</td>
<td>High</td>
<td>Stable</td>
<td>Promising</td>
</tr>
<tr>
<td>Financial Analysts</td>
<td>High</td>
<td>Competitive</td>
<td>Promising</td>
</tr>
<tr>
<td>Renewable Energy Specialists</td>
<td>High</td>
<td>Attractive</td>
<td>Promising</td>
</tr>
<tr>
<td>E-commerce & Digital Marketing Professionals</td>
<td>High</td>
<td>Competitive</td>
<td>Promising</td>
</tr>
</tbody>
</table>
<h2 class="text-center mt-4">Job Attributes Bar Chart</h2>
<canvas id="jobChart" width="400" height="200"></canvas>
</div>
<script>
// Job data for the bar chart
const jobTitles = [
'IT Professionals',
'Healthcare Workers',
'Financial Analysts',
'Renewable Energy Specialists',
'E-commerce & Digital Marketing Professionals'
];
const demandData = [4, 5, 4, 5, 4]; // High: 5, Medium: 3, Low: 1
const salaryData = [4, 3, 4, 5, 4]; // High: 5, Medium: 3, Low: 1
const growthData = [4, 4, 4, 5, 4]; // High: 5, Medium: 3, Low: 1
// Create the bar chart
const ctx = document.getElementById('jobChart').getContext('2d');
new Chart(ctx, {
type: 'bar',
data: {
labels: jobTitles,
datasets: [
{
label: 'Demand',
data: demandData,
backgroundColor: 'rgba(255, 99, 132, 0.6)'
},
{
label: 'Salary',
data: salaryData,
backgroundColor: 'rgba(54, 162, 235, 0.6)'
},
{
label: 'Growth Prospects',
data: growthData,
backgroundColor: 'rgba(75, 192, 192, 0.6)'
}
]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});
</script>
</body>
</html>