Skip to content
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
1 change: 1 addition & 0 deletions Projects/Raj_Patel/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is Raj's Project
53 changes: 53 additions & 0 deletions Projects/Raj_Patel/ind.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raj's Website</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4; /* Updated background color */
margin: 0;
padding: 0;
}

header {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
}

.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: white(250, 246, 243);
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
text-align: center;
padding: 1rem;
background-color: #333;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Raj's Website</h1>
</header>
<div class="container">
<h2>About Me</h2>
<p>Hello! My name is Raj and this is my personal website. I am in Electrical engineerinng(btech`22).I dont know why i am doing engineering.</p>
<p>Feel free to browse around and learn more about me!</p>
</div>
<footer>
<p>&copy; 2023 Raj's Website. All rights reserved.</p>
</footer>
</body>
</html>