-
Notifications
You must be signed in to change notification settings - Fork 392
/
TechEventSkillWise.html
113 lines (100 loc) · 5.38 KB
/
TechEventSkillWise.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
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upcoming Tech Events | Skillwise</title>
<meta name="description" content="Explore upcoming tech events on Skillwise. Attend webinars, conferences, and hackathons to upgrade your tech skills and network with industry professionals.">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
</head>
<body>
<section class="section events has-bg-image">
<div class="container">
<p class="title-sm text-center section-subtitle" id="tech-events-label">Explore Events</p>
<h2 class="headline-md text-center section-title">
Upcoming <span class="span has-after">Tech Events</span>
</h2>
<p class="text-center description">
Stay updated with the latest in technology by attending webinars, conferences, and hackathons. Our events cover AI, cloud computing, cybersecurity, and more. Join now to enhance your tech skills and expand your professional network!
</p>
<ul class="grid-list">
<li>
<div class="card event-card">
<div class="card-icon">
<img src="./assets/images/events/ai_conference.jpg" width="300" height="100" loading="lazy"
alt="AI Conference image">
</div>
<div>
<h3 class="title-lg">AI Conference 2024</h3>
<p class="title-sm">Date: March 15, 2024</p>
<p class="title-sm">Location: New York, NY</p>
</div>
<a href="event-ai-conference.html" class="layer-link" aria-label="Learn more about AI Conference"></a>
</div>
</li>
<li>
<div class="card event-card">
<div class="card-icon">
<img src="./assets/images/events/cloud_summit.jpg" width="300" height="100" loading="lazy"
alt="Cloud Summit image">
</div>
<div>
<h3 class="title-lg">Cloud Computing Summit</h3>
<p class="title-sm">Date: April 10, 2024</p>
<p class="title-sm">Location: San Francisco, CA</p>
</div>
<a href="event-cloud-summit.html" class="layer-link" aria-label="Learn more about Cloud Computing Summit"></a>
</div>
</li>
<li>
<div class="card event-card">
<div class="card-icon">
<img src="./assets/images/events/cyber_security.jpg" width="300" height="100" loading="lazy"
alt="Cybersecurity Workshop image">
</div>
<div>
<h3 class="title-lg">Cybersecurity Workshop</h3>
<p class="title-sm">Date: May 22, 2024</p>
<p class="title-sm">Location: Virtual</p>
</div>
<a href="event-cybersecurity-workshop.html" class="layer-link" aria-label="Learn more about Cybersecurity Workshop"></a>
</div>
</li>
<li>
<div class="card event-card">
<div class="card-icon">
<img src="./assets/images/events/hackathon.jpg" width="300" height="100" loading="lazy"
alt="Hackathon image">
</div>
<div>
<h3 class="title-lg">Global Tech Hackathon</h3>
<p class="title-sm">Date: June 30, 2024</p>
<p class="title-sm">Location: Virtual</p>
</div>
<a href="event-global-tech-hackathon.html" class="layer-link" aria-label="Learn more about Global Tech Hackathon"></a>
</div>
</li>
<li>
<div class="card event-card">
<div class="card-icon">
<img src="./assets/images/events/data_science.jpg" width="300" height="100" loading="lazy"
alt="Data Science Summit image">
</div>
<div>
<h3 class="title-lg">Data Science Summit</h3>
<p class="title-sm">Date: July 20, 2024</p>
<p class="title-sm">Location: Chicago, IL</p>
</div>
<a href="event-data-science-summit.html" class="layer-link" aria-label="Learn more about Data Science Summit"></a>
</div>
</li>
</ul>
<a href="register.html" class="btn btn-primary">Register for Events</a>
</div>
</section>
<footer>
<p><a href="C:\Users\suraj\coding\skillwise\SkillWise\LICENSE">MIT License</a></p>
</footer>
</body>
</html>