Skip to content

Commit

Permalink
Merge pull request #416 from AnanteshG/web-server
Browse files Browse the repository at this point in the history
Added webserver
  • Loading branch information
suryanshsk authored Oct 24, 2024
2 parents 26b70e3 + a58d511 commit 73b107c
Show file tree
Hide file tree
Showing 4 changed files with 426 additions and 0 deletions.
Binary file added Web-server/.DS_Store
Binary file not shown.
13 changes: 13 additions & 0 deletions Web-server/book.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"title": "The Great Gatsby",
"author": "F. Scott Fitzgerald",
"year": 1925,
"genres": ["Fiction", "Classic", "Literary"],
"available": true,
"details": {
"pages": 180,
"language": "English",
"isbn": "978-0-7432-7356-5"
}
}

12 changes: 12 additions & 0 deletions Web-server/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Greetings! Welcome to my own web server!</h1>
<p>This is created from scratch, YEP!</p>
</body>
</html>
Loading

0 comments on commit 73b107c

Please sign in to comment.