-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel3_task2.html
More file actions
101 lines (87 loc) · 2.91 KB
/
Copy pathlevel3_task2.html
File metadata and controls
101 lines (87 loc) · 2.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cognifyz Technologies - Web Developer Internship</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #e0f7fa;
color: #333;
}
header {
background-color: #1976D2;
color: #fff;
text-align: center;
padding: 30px 0;
}
section {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
h1, h2 {
color: #1976D2;
}
p {
line-height: 1.5;
}
button {
background-color: #1976D2;
color: #fff;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #1565C0;
}
footer {
background-color: #1976D2;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1 style="color: #fff;">Web Developer Internship Opportunities at Cognifyz Technologies</h1>
</header>
<section>
<h2>Brief Introduction</h2>
<p>Welcome to the Cognifyz Technologies Web Developer Internship Program. This internship offers a unique opportunity to gain real-world experience and receive mentorship from industry professionals. The program duration is [Specify Duration].</p>
<h2>Highlights</h2>
<ul>
<li>Real-world experience in web development projects</li>
<li>One-on-one mentorship from experienced developers</li>
<li>Opportunity to work on cutting-edge technologies</li>
<li>Networking opportunities with industry experts</li>
</ul>
<h2>Qualifications</h2>
<p>We are looking for candidates with the following skills and technologies:</p>
<ul>
<li>HTML, CSS, and JavaScript</li>
<li>Experience with front-end frameworks (e.g., React, Angular, Vue)</li>
<li>Understanding of web development principles</li>
<li>Problem-solving skills and attention to detail</li>
</ul>
<button>Apply Now</button>
</section>
<footer>
<p>Contact us for inquiries: [Email] | Phone: [Phone Number]</p>
</footer>
</body>
</html>