-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
51 lines (51 loc) · 2.16 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>About</title>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="about.css" />
</head>
<body>
<nav class="navbar navbar-expand-sm">
<ul class="navbar-nav">
<li class="nav-item active" id="curMenu">
<a class="nav-link" href="index.html"><b>Home</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html"><b>About</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html"><b>Projects</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="Resume.html"><b>Resume</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html"><b>Contact</b></a>
</li>
</ul>
</nav>
<div class="container" id="about">
<section class="content">
<h1><b>About me</b></h1>
<img src="Chitra.jpg" alt="Chitra profile picture" ></img>
<p> Hi! This is Chitradevi. I am currently working towards my <b>Master's</b> degree in <b>Computer Science</b> at <b>Portland State University</b>.
I have a BS in Computer Science & Engineering and 3 years of work experience as a Software Engineer.
I have worked in <i>Selenium JAVA Automation testing and I am also an Oracle Certified JAVA programmer</i>.
I have completed 3 graduate courses in Computer Science at Portland State University and working towards completing my Master's degree coursework. I am interested in
areas such as <i>Cloud computing, Machine Learning and Software Engineering.</i> I am open to intern and full time opportunities that will utilize my skillset and help me learn new tools and
technologies as well.
</p>
</section>
<hr>
</div>
</body>
</html>