-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_me.html
45 lines (44 loc) · 1.82 KB
/
about_me.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/About/about_me.css" />
<link rel="stylesheet" type="text/css" href="header.css" />
<link rel="icon" href="Images/logo.png" />
<title>About Kshitij Arya</title>
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=adamina:400|alegreya-sc:500|nokora:400" rel="stylesheet" />
</head>
<body class="body">
<div id="header"></div>
<div class="main">
<div class="container">
<h1 class="title">About Me</h1>
<div class="content">
<img class="profile-picture" src="Images/pfp.webp" alt="Kshitij_Arya" />
<p class="description">
Kshitij Arya is a student,Developer currently studying
biotechnology. He is very enthusiastic about tech. He is also a productivity nerd. He loves to go for
running or long walks in his free time,and is also intrested in
photgraphy and cinematography. Kshitij has this weird thing where
ideas, thoughts and opinions popup in his head 24/7. So,he decided to put those ideas on
web page and show them to everyone. Hope you enjoy them.
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script
src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g="
crossorigin="anonymous"
></script>
<script>
$(function () {
$("#header").load("header.html");
});
</script>
<script src="/About/about_me.js"></script>
<script type="javascript" src="header.js"></script>
</body>
</html>