Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

HARINI-BRANCH #434

Open
wants to merge 2 commits into
base: main
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ Preview the gif below to get a quick demo of github.dev in action.

# Why?
It’s a quick way to edit and navigate code. It's especially useful if you want to edit multiple files at a time or take advantage of all the powerful code editing features of Visual Studio Code when making a quick change. For more information, see our [documentation](https://github.co/codespaces-editor-help).


HARINI'S FIRST CHANGE TO NEW BRANCH
38 changes: 38 additions & 0 deletions training.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome Nite</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #2c3e50;
color: white;
text-align: center;
margin-top: 50px;
}
h1 {
font-size: 3em;
margin: 20px;
}
p {
font-size: 1.5em;
}
.message {
font-size: 2em;
margin-top: 30px;
animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
</style>
</head>
<body>
<h1>Welcome Nite!</h1>
<p>Good evening, have a relaxing night ahead!</p>
<div class="message">✨ Enjoy the calm of the night ✨</div>
</body>
</html>