-
Notifications
You must be signed in to change notification settings - Fork 1
/
Skills.html
78 lines (77 loc) · 2.33 KB
/
Skills.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IT Industry Skills</title>
<style>
body {
font-family: Arial, sans-serif;
background: url("jssate.jpg") no-repeat center center fixed;
background-size: cover;
color: #333;
margin: 0;
padding: 0;
}
header {
color: rgb(21, 2, 76);
padding: 1rem;
text-align: center;
}
main {
padding: 2rem;
background: rgba(255, 255, 255, 0.8);
margin: 2rem;
border-radius: 10px;
}
h1 {
text-align: center;
margin-bottom: 1.5rem;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background-color: #ffffff;
border: 1px solid #db460c;
border-radius: 5px;
margin-bottom: 0.5rem;
padding: 1rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<header>
<h1>SKILLS REQUIRED IN IT INDUSTRY</h1>
</header>
<main>
<h1>Key Skills</h1>
<ul>
<li>Programming Languages (e.g., Python, Java, JavaScript)</li>
<li>Web Development (HTML, CSS, JavaScript, React, Angular)</li>
<li>Database Management (SQL, NoSQL)</li>
<li>Cloud Computing (AWS, Azure, Google Cloud)</li>
<li>Cybersecurity</li>
<li>Data Analysis and Data Science</li>
<li>Artificial Intelligence and Machine Learning</li>
<li>DevOps</li>
<li>Networking</li>
<li>Mobile Development (iOS, Android)</li>
<li>Software Testing and QA</li>
<li>Agile and Scrum Methodologies</li>
<li>Blockchain Technology</li>
<li>Internet of Things (IoT)</li>
<li>Robotic Process Automation (RPA)</li>
<li>Big Data Technologies (Hadoop, Spark)</li>
<li>UI/UX Design</li>
<li>Virtualization and Containerization (Docker, Kubernetes)</li>
<li>IT Project Management</li>
<li>Technical Support and IT Helpdesk</li>
<li>Enterprise Resource Planning (ERP) Systems</li>
<li>Business Intelligence (BI) Tools</li>
</ul>
</main>
</body>
</html>