-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
107 lines (101 loc) · 4.52 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="styles.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.1/css/all.css"
integrity="sha384-/frq1SRXYH/bSyou/HUp/hib7RVN1TawQYja658FEOodR/FQBKVqT9Ol+Oz3Olq5"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="navbar__container">
<a href="/" id="navbar__logo"><i class="fas fa-microchip"></i>Pranay Premdas</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="/index.html" class="navbar__links">Home</a>
</li>
<li class="navbar__item">
<a href="/projects.html" class="navbar__links">My Projects</a>
</li>
<li class="navbar__item">
<a href="/passions.html" class="navbar__links">Other Passions</a>
</li>
</ul>
</div>
</nav>
<div class="about__wrapper">
<div class="about__wrapper--about">
<div class="puzzle__card"
data-aos="fade-right"
data-aos-duration="1500"
data-aos-once="false"> About Me
<div class="about__card--description"
data-aos="fade-in"
data-aos-duration="1500"
data-aos-once="false">
Hi, my name is Pranay. Currently, I am undertaking my penultimate
year pursuing a bachelor's degree in Software Engineering at the University of Queensland.
I have a strong passion for software programming, data structures, algorithm analysis
and studying cryptocurrencies.
<br> <br>
As a firm believer in the bright future of the software industry, I aspire to
utilise my knowledge in programming, mathematics, and engineering to overcome technical
problems in this space.
<br> <br>
</div>
</div>
<div class="about__card--img" id = img_12
data-aos="fade-left"
data-aos-duration="1500"
data-aos-once="false">
</div>
</div>
</div>
<!-- Footers Section -->
<div class="footer__container">
<div class="social__media">
<div class="social__media--wrap">
<div class="footer__logo">
<a href="/" id="footer__logo"><i class="fas fa-microchip"></i></a>
</div>
<div class="footer__contact">
<p>Email: [email protected]</p>
</div>
<div class="social__icons">
<a href="https://www.linkedin.com/in/pranay-premdas-a56858198"
class="social__icon--link" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/pranaypremdas"
class="social__icon--link" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.youtube.com/channel/UCv37TkPzSYXTP5k20Hw9uGw"
class="social__icon--link" target="_blank">
<i class="fab fa-youtube"></i>
</a>
<a href="https://open.spotify.com/user/pranay1112?si=dcbfc7cc93404b5f"
class="social__icon--link" target="_blank">
<i class="fab fa-spotify"></i>
</a>
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src= app.js></script>
</body>
</html>