-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
141 lines (138 loc) · 4.73 KB
/
work.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
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/cccb1ca10a.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Dosis:[email protected]&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="scss/_item_grid.scss" />
<title>My Work | Python Developer</title>
</head>
<body>
<!-- header -->
<header id="header-inner">
<div class="container">
<nav id="main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="work.html" class="current">Work</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- section a -->
<section id="work-a" class="text-center py-3">
<div class="container">
<h2 class="section-title">Awards</h2>
<div class="bottom-line"></div>
<p class="lead">Awards that I won by completing various courses...</p>
<div class="about-info">
<div class="award-1">
<div class="i fas fa-award fa-3x"></div>
<h3>CS50 Python</h3>
<p>
CS50’s Introduction to Programming with Python’s
<a
href="/dist/pdfs/cs50p certificate.pdf"
style="text-decoration: underline; color: rgb(7, 10, 226)"
>certificate</a
>
from Harvard University
</p>
</div>
<div class="award-2">
<div class="i fas fa-award fa-3x"></div>
<h3>HTML & CSS</h3>
<p>
Completed a course in HTML and CSS from Udemy. View the
<a
href="/dist/pdfs/html-css-course.pdf"
style="text-decoration: underline; color: rgb(7, 10, 226)"
>certificate</a
>
</p>
</div>
</div>
</div>
</section>
<!-- section B: projects -->
<section id="work-b" class="text-center py-3">
<div class="container">
<h2 class="section-title">Projects</h2>
<div class="bottom-line"></div>
<p class="lead">
I have worked on several projects that showcase my abilities and
creativity as a developer. Some of my notable projects include...
</p>
<div class="projects-info">
<div class="project-1">
<i class="fas fa-code fa-3x"></i>
<h3>GCompris</h3>
<p>
Contributions to children’s education suite
<a
href="https://www.gcompris.net/index-en.html"
style="text-decoration: underline; color: rgb(7, 10, 226)"
>GCompris</a
>from
<a
href="https://kde.org/"
style="text-decoration: underline; color: rgb(7, 10, 226)"
>KDE</a
>. <br />
<a
href="https://invent.kde.org/education/gcompris/-/merge_requests/121"
style="text-decoration: underline; color: rgb(7, 10, 226)"
>Pull Request</a
>
</p>
</div>
<div class="project-2">
<i class="fas fa-code fa-3x"></i>
<h3>Poll App</h3>
<p>
A Web App built using Django framework to conduct polls. Contains
CRUD functionality for Poll questions and casting votes.
<a
href="https://github.com/adityasuthar/django-polls"
style="text-decoration: underline; color: rgb(7, 10, 226)"
>GitHub</a
>.
</p>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer class="main-footer">
<div class="footer-content container">
<p>Copyright © 2024. Aditya 2024</p>
<div class="social">
<a
href="https://github.com/adityasuthar"
target="_blank"
style="text-decoration: none; color: black"
><i class="fab fa-github"></i
></a>
<a
href="https://www.linkedin.com/in/aditya-suthar-a05b57226/"
target="_blank"
style="text-decoration: none; color: #0a66c2"
><i class="fab fa-linkedin"></i
></a>
</div>
</div>
</footer>
</body>
</html>