-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (67 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/png" href="images/logo.png"/>
<link rel="stylesheet" type="text/css" href="css/html5reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rishiraj Chandra's Portfolio</title>
</head>
<body>
<a class = "skip" href="#skip">Jump To Content</a>
<header>
<nav>
<ul class="nav_links">
<li class="nav_item"><a href="./index.html" class="current">About Me</a></li>
<li class="nav_item"><a href="./work.html">Work</a></li>
<li class="nav_item"><a href="./college.html">College</a></li>
</ul>
</nav>
</header>
<main class="about" id="skip">
<h1 id="animate">Hey There!</h1>
<p>
My name is Rishiraj Chandra and I created this website using HTML and CSS! I am a computer science student mainly interested in
backend development and open source contribution. This website is a personal portfolio that showcases the work I have done
professionally, the technological skills I possess from those experiences, as well as my educational background and extracurricular
involvement in college. Enjoy exploring the website!
</p>
<h2>Intro</h2>
<div class="container">
<div class="item1" id="about1">
<img id="image1" src="images/myself.jpg" alt="Portrait of Rishiraj Chandra" />
</div>
<div class="item2" id="about2">
<img id="image2" src="images/backend.jpg" alt="Picture representing backend development" />
</div>
<div class="item3" id="about3">
<img id="image3" src="images/open_source.png" alt="Open Source Logo" />
</div>
<div class="item4" id="about4">
<img id="image4" src="images/web.jpg" alt="Graphic representing Internet" />
</div>
<div class="item5" id="about5">
<img id="image4" src="images/css.jpg" alt="CSS Logo" />
</div>
<div class="item6" id="about6">
<img id="image4" src="images/html.png" alt="HTML Logo" />
</div>
<div class="item7" id="about7">
<img id="image4" src="images/dev.png" alt="Software Developer" />
</div>
<div class="item8" id="about8">
<img id="image4" src="images/education.png" alt="Graphic representing education" />
</div>
<div class="item9" id="about9">
<img id="image4" src="images/career.png" alt="Graphic representing career" />
</div>
</div>
</main>
<footer>
<p>Personal Portfolio<br/>
Copyright © 2022 Rishiraj Chandra</p>
</footer>
</body>
</html>