Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This is my portfolio #324

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,22 @@
<title>HTML Portfolio</title>
</head>
<body>

Welcome to the HTML Portfolio Project

<div class="header">
<h1>Bhagyalakshmki Katta</h1>
<h2>Graduate Student</h2>
</div>
<div class="tagline">
<h3>I am a fresher with a keen interest in machine learning and cybersecurity and I am currently pursuing masters at university of Cincinnati.</h3>
</div>
<div class="skills">
<h3>My skills</h3>
<ul>HTMl<p>I enjoy creating the structure and content of web pages</p></ul>
<ul>CSS<p>I enjoy styling the appearance and layout of web pages.</p></ul>
<ul>Python<p>Python language is simplicity, readability, and the extensive range of libraries and frameworks that make it highly versatile and efficient for various programming tasks.</p></ul>
</div>
<div class="contact">
<h3>Contact me</h3>
<p>linkedin<a>https://www.linkedin.com/in/bhagya-lakshmi-katta/</a></p>
</div>
</body>
</html>
24 changes: 24 additions & 0 deletions src/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.header {
background-color: blueviolet ;
padding: 20px;
text-align: center;
font-size: xx-large;
}
.tagline{
background-color: whitesmoke ;
padding: 20px;
text-align: center;
font-size: large;
}
.skills{
background-color: blueviolet ;
padding: 20px;
text-align: center;
font-size: medium;
}
.contact{
background-color: whitesmoke ;
padding: 20px;
text-align: center;
font-size: medium;
}