-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathawards.html
130 lines (118 loc) · 5.58 KB
/
awards.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awards</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!---Navbar Section Starts-->
<nav class="navbar">
<a href="index.html"><i class="fas fa-home"></i><span>home</span></a>
<a href="about.html"><i class="fas fa-user"></i><span>about</span></a>
<a href="portfolio.html"><i class="fas fa-briefcase"></i><span>portfolio</span></a>
<a class="activ" href="awards.html"><i class="fas fa-award activ"></i><span>awards</span></a>
<a href="contact.html"><i class="fas fa-address-book"></i><span>contact</span></a>
</nav>
<!---Navbar Section Ends-->
<!---Awards Section Starts-->
<section class="awards">
<h1 class="heading"><span>my</span> awards </h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/award-1.PNG" alt="">
</div>
<div class="content">
<div class="icons">
<a href="#"><i class="fas fa-calendar"></i> 25th September, 2021 </a><br>
<a href="#"><i class="fas fa-award"></i> by SoloLearn </a>
</div>
<h3>Python Core Certificate</h3>
<p>I have been successfully completed the Course by demonstrating theoretical and
practical understandings of Python Core.. The Course offered by SoloLearn</p>
<a href="#" class="btn">read more <i class="fas fa-link"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/award-2.PNG" alt="">
</div>
<div class="content">
<div class="icons">
<a href="#"><i class="fas fa-calendar"></i> 24th September, 2021 </a><br>
<a href="#"><i class="fas fa-award"></i> by SoloLearn </a>
</div>
<h3>Python For Beginners Certificate</h3>
<p>I have been successfully completed the Course by demonstrating theoretical and
practical understandings of Python For Beginners .. The Course offered by SoloLearn</p>
<a href="#" class="btn">read more <i class="fas fa-link"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/award-3.PNG" alt="">
</div>
<div class="content">
<div class="icons">
<a href="#"><i class="fas fa-calendar"></i> 24th September, 2021 </a><br>
<a href="#"><i class="fas fa-award"></i> by SoloLearn </a>
</div>
<h3>HTML Certificate</h3>
<p>I have been successfully completed the Course by demonstrating theoretical and
practical understandings of HTML.. The Course offered by SoloLearn</p>
<a href="#" class="btn">read more <i class="fas fa-link"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/award-4.PNG" alt="">
</div>
<div class="content">
<div class="icons">
<a href="#"><i class="fas fa-calendar"></i> 24th September, 2021 </a><br>
<a href="#"><i class="fas fa-award"></i> by SoloLearn </a>
</div>
<h3>CSS Certificate</h3>
<p>I have been successfully completed the Course by demonstrating theoretical and
practical understandings of CSS.. The Course offered by SoloLearn</p>
<a href="#" class="btn">read more <i class="fas fa-link"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/award-5.PNG" alt="">
</div>
<div class="content">
<div class="icons">
<a href="#"><i class="fas fa-calendar"></i> 27th September, 2021 </a><br>
<a href="#"><i class="fas fa-award"></i> by Gymnasium </a>
</div>
<h3>Modern Web Design Certificate</h3>
<p>I have been successfully completed the Course and Final Exam for Modern Web Design.. The Course offered by Gymnasium</p>
<a href="#" class="btn">read more <i class="fas fa-link"></i></a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/award-6.PNG" alt="">
</div>
<div class="content">
<div class="icons">
<a href="#"><i class="fas fa-calendar"></i> 26th October, 2021 </a><br>
<a href="#"><i class="fas fa-award"></i> by LearnPython </a>
</div>
<h3>Python Basics Certificate</h3>
<p>I have been successfully completed the Course by demonstrating theoretical and
practical understandings of Python Basics.. The Course offered by LearnPython</p>
<a href="#" class="btn">read more <i class="fas fa-link"></i></a>
</div>
</div>
</div>
</section>
<!---Awards Section Ends-->
</body>
</html>