-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (99 loc) · 4.64 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Your Name">
<title>Professional Portfolio</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#qualifications">Qualifications</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</nav>
</header>
<section id="about">
<div class="content">
<h1>About Me</h1>
<p>Hello, I'm Sai Charan , a passionate software developer with a strong foundation in Java, Data Structures and Algorithms. I am a quick learner and a person who loves programming and solving problems.
Seeking a competitive position to enhance my skills and contribute to a professional organization. I'm very much passionate to learn new stuff that interests me and can help me to get better.</p>
</div>
</section>
<section id="projects">
<div class="content">
<h1>Projects</h1>
<div class="project">
<h3>Message Encode and Decode</h3>
<p>This Python project uses Tkinter ,base64 library, and Vigenre Cipher algorithm to develop a system for encoding and decoding messages.</p>
<a href="https://github.com/charan12-git/Message-Encode-And-Decode" target="_blank" class="repo-link">
View on GitHub</a>
</div>
<div class="project">
<h3>Age and Gender Detection</h3>
<p>A Python project which can detect gender and age using OpenCV of the person in a image or through camera.</p>
<a href="https://github.com/charan12-git/Gender-and-Age-Detection" target="_blank" class="repo-link">
View on GitHub</a>
</div>
<div class="project">
<h3>Detect DUI an in car detection system for drink driving ad BACS</h3>
<p>This Project detects a driver is either drunk or not with the help of vital signs (heart rate and respiration rate) extracted from in-car WiFi system and driver’s psychomotor coordination through steering wheel operations. The framework consists of a series of signal processing algorithms for extracting clean and informative vital signs and psychomotor coordination, and integrate the two data streams using a self-attention convolutional neural network (i.e., C-Attention).</p>
</div>
</div>
</section>
<section id="skills">
<div class="content">
<h1>Skills</h1>
<ul>
<li>Java</li>
<li>C,C++</li>
<li>Python</li>
<li>HTML, CSS , Javascript</li>
<li>Database Management: MySQL</li>
</ul>
</div>
</section>
<section id="qualifications">
<div class="content">
<h1>Qualifications</h1>
<p><ul style="list-style-type:disc;"><li>Bachelor of Technology in Computer Science and Engineering, Malla Reddy Institute of Technology and Science, 2021-2025</li>
<li>Intermediate Education, Narayana Junior College, Scored 97.8%</li>
<li>Secondary Education(10th), M DAV PUBLIC SCHOOL, Scored 94%</li></ul></p>
</div>
</section>
<section id="contact">
<div class="content">
<h1>Contact Me</h1>
<p>Feel free to reach out to me through the following channels:</p>
<div class="contact-info">
<!-- Email -->
<p>
<strong>Email:</strong>
<a href="mailto:charan19283746@gmail.com" class="contact-link">charan19283746@gmail.com</a>
</p>
<!-- Phone Number -->
<p>
<strong>Phone:</strong>
<a href="tel:+7842250312" class="contact-link">+7842250312</a>
</p>
<!-- GitHub -->
<p>
<strong>GitHub:</strong>
<a href="https://github.com/charan12-git" target="_blank" class="contact-link">
github.com/charan12-git
</a>
</p>
</div>
</div>
</section>
<footer>
<p>© 2024 Sai Charan. All rights reserved.</p>
</footer>
</body>
</html>