Skip to content

Commit e45cae2

Browse files
deleted resume
1 parent a47d36d commit e45cae2

File tree

9 files changed

+50
-0
lines changed

9 files changed

+50
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# ComputerScientist-01.github.io

favicon.ico

1.12 KB
Binary file not shown.

images/ai.jpg

156 KB
Loading

images/ai.png

915 Bytes
Loading

images/banner.jpg

282 KB
Loading

images/banner1.jpg

55.9 KB
Loading

images/headshot.jpg

142 KB
Loading

index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" href="stylesheet.css" />
5+
<meta charset="utf-8" />
6+
<title>Jayvardhan Rathi | Portfolio</title>
7+
</head>
8+
<body>
9+
<div class="container">
10+
<h1 class="greeting">Hi there!</h1>
11+
<h2 class="name">I'm Jayvardhan</h2>
12+
<p>Geek • Programmer • Aspiring Flutter Developer</p>
13+
</div>
14+
</body>
15+
</html>

stylesheet.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
@import url("https://fonts.googleapis.com/css2?family=Kufam:wght@400;500;700&display=swap");
2+
3+
body {
4+
display: grid;
5+
place-items: center;
6+
height: 100vh;
7+
}
8+
9+
.container {
10+
display: flex;
11+
flex-direction: column;
12+
justify-content: center;
13+
align-items: center;
14+
border-color: #222222;
15+
border-width: 1px;
16+
border-style: solid;
17+
border-radius: 1rem;
18+
padding: 8px 16px;
19+
}
20+
21+
.greeting {
22+
font-size: 2rem;
23+
font-family: "Kufam";
24+
}
25+
26+
.name {
27+
font-size: 4rem;
28+
margin: 0;
29+
font-family: "Kufam";
30+
}
31+
32+
p {
33+
font-family: "Kufam";
34+
}

0 commit comments

Comments
 (0)