-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (91 loc) · 4.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<header class="header">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">My Portfolio</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<section id="about" class="container mt-5">
<h1>About Me</h1>
<p>I'm a fresher persuing Btech CSE from Lovely Professional University.
I can describe myself as a problem solver, coding enthusiast and also a keen observer.
I have learned HTML/CSS,Python, C language. Currently I am learning C++ and Java.I have an interest in the field of Artificial Intelligence and Machine Learning. Also, I am working on a project on Sentiment Analysis based on Machine Learning.</p>
</section>
<section id="find-me" class="container mt-5">
<h1>Find Me At</h1>
<ul class="list-group">
<li class="list-group-item"><a href="www.linkedin.com/in/jheelamh84419">LinkedIn</a></li>
<li class="list-group-item"><a href="https://github.com/your-profile">GitHub</a></li>
<!-- Add more links as needed -->
</ul>
</section>
<section id="projects" class="container mt-5">
<h1>Projects</h1>
<div class="row">
<!-- Project Cards -->
<div class="col-md-4">
<div class="card">
<img src="https://media.sproutsocial.com/uploads/2023/07/Sentiment-analysis-HUB-Final.jpg" class="card-img-top" alt="Project 1">
<div class="card-body">
<h5 class="card-title">Sentiment Analysis</h5>
<p class="card-text">This is a complete information on a small review paper I have worked on. It is based on Machine Learning. The topic is Effects of News Sentiment on Financial Market trends</p>
</div>
</div>
</div>
<!-- Add more project cards as needed -->
</div>
</section>
<section id="contact" class="container mt-5">
<h1>Contact Me</h1>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Your Name">
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="Your Email">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="3" placeholder="Your Message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</section>
</main>
<footer class="footer bg-light text-center py-3">
<p>© 2024 My Portfolio</p>
</footer>
<!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>