Skip to content

Commit

Permalink
Add initial HTML structure and content
Browse files Browse the repository at this point in the history
  • Loading branch information
batugane committed Sep 19, 2024
1 parent c99468c commit 81cfb3b
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VirtualChef</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 50px;
background-color: #f4f4f4;
color: #333;
}
h1 {
color: #d35400;
}
p {
font-size: 18px;
line-height: 1.6;
}
footer {
margin-top: 50px;
font-size: 14px;
color: #777;
}
</style>
</head>
<body>
<h1>Welcome to VirtualChef</h1>
<p>Your personal AI-powered cooking assistant. Explore recipes, join virtual cooking classes, and connect with a community of food lovers.</p>
<footer>&copy; 2024 VirtualChef. All rights reserved.</footer>
</body>
</html>

0 comments on commit 81cfb3b

Please sign in to comment.