-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 2.03 KB
/
index.html
File metadata and controls
56 lines (48 loc) · 2.03 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Pratik Panda</title>
<link type="text/css" rel="stylesheet" href="index.css" media="screen,projection" />
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico' />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body class="body">
<!-- Navigation Bar -->
<header class="navbar">
<a onclick="btnScrollTo('about')">About Me</a>
<a onclick="btnScrollTo('portfolio')">Portfolio</a>
<a onclick="btnScrollTo('contact')">Contact Me</a>
</header>
<div class="container">
<!-- Header -->
<div class="header">
<div class="image-container">
<img class="circle" src="./images/profile-background.jpg" alt="" />
<img class="profile-image" src="./images/pratik-headshot.png" alt="Pratik smiling" />
</div>
<div class="header-text">
<h1 class="title">Hi! I'm Pratik Panda.</h1>
<h2 class="subtitle">BETA: This website is Work in Progress.</h2>
</div>
</div>
<!-- About Me -->
<h1 id="about">About Me</h1>
<p>
Thanks for visiting my website! My name is Pratik, and I am an Arizona native. Born and raised in the
Chandler/Gilbert area, I graduated from Arizona State University with my Bachelor's in Computer Science in May
2020 and my Master's in Computer Science in May 2021. This site is a work in progress, so if you have any questions
or comments, please <a href="mailto:pratik@pratikpanda.dev">feel free to reach out</a>!
</p>
<div id="aboutme-container"></div>
<!-- Portfolio and Experience -->
<h1 id="portfolio">Portfolio and Experiences</h1>
<div id="portfolio-container"></div>
<h1 id="contact">Contact Me</h1>
<p>
If you have any questions or comments, please feel free to reach out to me at <a href="mailto:pratik@pratikpanda.dev">pratik@pratikpanda.dev</a>!
</p>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>