-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcertificate.html
62 lines (54 loc) · 1.87 KB
/
certificate.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<link rel="stylesheet" href="css/certificate.css" />
<!-- Favicon -->
<link href="/favicon/favicon.ico" rel="icon"/>
<title>Certification</title>
</head>
<body>
<div class="slider-container">
<div class="left-slide">
<div style="background-color: #f33432">
<h3>Javascript</h3>
<p>Hackerrank</p>
</div>
<div style="background-color: palevioletred">
<h3>AZ-900</h3>
<p>Microsoft</p>
</div>
<div style="background-color: darkcyan">
<h3>Soft-Skills</h3>
<p>TCS-Ion</p>
</div>
<div style="background-color: blueviolet">
<h3>Web Development</h3>
<p>Internshala</p>
</div>
<div style="background-color: #FD3555">
<h3>Web Development Intern</h3>
<p>Ineuron</p>
</div>
</div>
<div class="right-slide">
<div style="background-image: url('/img/ineuron.jpg')"></div>
<div style="background-image: url('/img/webdev.jpg')"></div>
<div style="background-image: url('/img/softskill.jpg')"></div>
<div style="background-image: url('/img/az900.jpg')"></div>
<div style="background-image: url('/img/jsbasic.jpg')"></div>
</div>
<div class="action-buttons">
<button class="down-button">
<i class="fas fa-arrow-down"></i>
</button>
<button class="up-button">
<i class="fas fa-arrow-up"></i>
</button>
</div>
</div>
<script src="js/certificate.js"></script>
</body>
</html>