-
Notifications
You must be signed in to change notification settings - Fork 0
/
college.html
95 lines (86 loc) · 3.73 KB
/
college.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
<!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">About Me</a></li>
<li class="nav_item"><a href="./work.html">Work</a></li>
<li class="nav_item"><a href="./college.html" class="current">College</a></li>
</ul>
</nav>
</header>
<main class="college" id="skip">
<h1 id="animate">My Education</h1>
<p>
I am currently pursuing a B.S.E. in Computer Science from the University of Michigan Ann Arbor
and am involved with software clubs on campus. I seek to take classes that challenge me and add
to my technical skillset.
</p>
<h2 id = "gallery">
<div class="gallery">
<img id="image17" src="images/um_seal.png" alt="University of Michigan Seal"/>
<img id="image18" src="images/cs.jpg" alt="Computers with city in background"/>
</div>
</h2>
<h2> Activities </h2>
<p>
There are two main software organizations at college that I am a part of. Michigan EcoData
and Michigan Hackers. Both clubs give me the opportunity to explore different
technologies outside of the classroom in a fun, collaborative environment.
</p>
<div class="gallery_flex" id="college1">
<img id="image19" src="images/michigan_hackers.jfif" alt="Michigan Hackers Logo" />
<img id="image24" src="images/michigan_ecodata.jfif" alt="Michigan EcoData Logo" />
</div>
<h2>My Involvement</h2>
<div class="clubs">
<div class="club" id="club1">
<header><h3>Michigan Hackers</h3></header>
<ul>
<li>Involved with a team that is focused on open source projects
and how to contribute to them. </li>
<li>I mainly use C++, Git, and GitHub to contribute to various
opens source projects.
</li>
</ul>
<a href="https://michhackers.com/" style="color: black" class="button" id="button1">
Click here to visit the Michigan Hackers website!</a>
</div>
<div class="club" id="club2">
<header><h3>Michigan EcoData</h3></header>
<ul>
<li>Involved with a team that analyzes weather data from the
UCI machine learning repository </li>
<li>I mainly use Python and various Python libraries such as TensorFlow, numpy,
and matplotlib to analyze data.</li>
</ul>
<a href="https://umecodata.github.io/website/index.html" style="color: black" class="button" id="button2">
Click here to visit the Michigan EcoData website!</a>
</div>
</div>
<h2> Technologies </h2>
<div class="gallery_flex" id="college2">
<img id="image21" src="images/cplusplus.png" alt="C++ logo"/>
<img id="image22" src="images/git.png" alt="Git logo"/>
<img id="image23" src="images/github.png" alt="GitHub logo"/>
<img id="image25" src="images/python.png" alt="Python logo"/>
<img id="image26" src="images/tensorflow.png" alt="TensorFlow logo"/>
</div>
</main>
<footer>
<p>Personal Portfolio<br/>
Copyright © 2022 Rishiraj Chandra</p>
</footer>
</body>
</html>