-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="portfolio">
<div class="top-section">
<div class="my-name">
<p class="name">I'm Rishika</p>
<p class="work">A Web Developer</p>
<p class="sodhi">I am a professional web developer.Our main goal is to help and satisfy the global and local clients by providing web development solutions.</p>
</div>
<div class="profile-img">
<img src="portfolio_profile-removebg-preview.png" alt="girl-image">
</div>
</div>
<section class="skills-section">
<h2>Skills</h2>
<ul class="skills-list">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
<li>Java</li>
<li>MySQL</li>
<li>C</li>
</ul>
</section>
<div class="projects-section">
<h2>Projects</h2>
<div class="project-item">
<h3>Project 1: Portfolio Website</h3>
<p>A responsive portfolio website to showcase my skills and projects.</p>
</div>
<div class="project-item">
<h3>Project 2: Spam mail prediction</h3>
<p>Developed a simple machine learning model using Logistic Regression to predict whether the given mail is spam or ham.</p>
</div>
</div>
<div class="contact-section">
<h2>Contact</h2>
<p>Feel free to reach out for collaborations or job opportunities:</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</body>
</html>