Skip to content

Commit

Permalink
Added blog endpoint πŸ˜ƒ
Browse files Browse the repository at this point in the history
  • Loading branch information
AliSananS committed Mar 3, 2024
1 parent 997aec0 commit a87b63d
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 1 deletion.
34 changes: 34 additions & 0 deletions blogs/blog1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ali - Full Stack Localhost Developer</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.content {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="content">
<h1>Hi, I'm Ali!πŸ‘‹</h1>
<p>This is my first ever blog!</p>
</div>
</body>
</html>
35 changes: 34 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,34 @@
Hello!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ali - Full Stack Localhost Developer</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.content {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="content">
<h1>Hi, I'm Ali!</h1>
<p>Full Stack Localhost Developer</p>
</div>
</body>
</html>

0 comments on commit a87b63d

Please sign in to comment.