-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclicked_intro.html
32 lines (32 loc) · 1.07 KB
/
clicked_intro.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Mukta:wght@400&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Mukta', sans-serif;
color: #1a1a1a;
background-color: #e7dfdd; /* Updated background color */
}
.container {
padding: 1rem;
text-align: center;
}
.content {
font-size: clamp(1rem, 2.5vw, 1.5rem); /* Responsive font size */
line-height: 1.6;
}
</style>
</head>
<body>
<div class="container">
<p class="content">
☁️ Clicked is a virtual work experience program that empowers learners to gain hands-on Salesforce learning experiences, explore career paths, develop essential skills, and launch their careers in collaboration with corporate training partners and employers.
</p>
</div>
</body>
</html>