-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (110 loc) · 4.45 KB
/
index.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
<!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>
<!-- Navbar Section -->
<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>
<!-- Hero Section -->
<div class="main">
<div class="main__container">
<h1>Hi, my name is Pranay.</h1>
<p>I'm a third year software engineering student :)</p>
<h2>Welcome to my Website!</h2>
<button class="main__btn">
<a href="about.html">About Me</a>
</button>
</div>
</div>
<!-- Services Section -->
<div class="services">
<h1
data-aos="fade-up"
data-aos-duration="3000"
data-aos-once="false">
Some of my Projects</h1>
<div class="services__container">
<div class="services__card">
<h2>Retroactive</h2>
<p>Open Source Team Project - Java</p>
<button><a href="retroactive.html">View</a></button>
</div>
<div class="services__card">
<h2>Key Cave Adventure</h2>
<p>GUI game - Python</p>
<button><a href="keycaveadventure.html">View</a></button>
</div>
<div class="services__card">
<h2>Cat Clock</h2>
<p>Clock App - Electron Javascript</p>
<button><a href="catclock.html">View</a></button>
</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>