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
48 changes: 48 additions & 0 deletions ankit.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styled.css">
</head>
<body>
<h1>hello deepak</h1>
<h1>I am good, how are you</h1>
<div>
<p>Prithibi ta naki choto hote hote Lyrics
[Verse 1]
Prithibita naki choto hote hote
Satellite aar cable er hate
Drawing room a rakha boka baksho te bondhi

[Verse 2]
Ghore boshe sara duniyar saathe
Jogajog aaj hater mutho te
Ghuche geche desh kal simanar gondi

[Chorus]
Bhebe dekhecho ki
Tara rao joto alok borsho dure
Taro dure
Tumi aar ami jai krome shore shore
Bhebe dekhecho ki
Tara rao joto alok borsho dure
Taro dure
Tumi aar ami jai krome shore shore

[Verse 3]
Shaari shaari mukh aashe aar jae
Neshatur chokh tv porday
Poka-makore aguner sathe songii

[Verse 4]
Pasha pashi boshe еk sathe dekha
Ek sathe noy asholе je eka
Tomar amar bharater noya fondi</p>

</div>
<p style="color:black">This masterpeice was created in the early 1970s. it is then adapted in bollywood Without giving any credit to its original makers ( Crosswinds, Lakkhichara, and Moheener Ghoraguli) Bengali music was ahead of its time.</p>
<audio src="./audio/Prithibita-Naki-Choto-Hote-Hote.mp3" controls muted></audio>
</body>
</html>
Binary file added audio/Prithibita-Naki-Choto-Hote-Hote.mp3
Binary file not shown.
8 changes: 8 additions & 0 deletions gitnewtoday.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<html>
<head>
<title>new</title>
</head>
<body>
<h1>intentioned</h1>
</body>
</html>
58 changes: 58 additions & 0 deletions grid.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Grid Exercise with Rows + Media Query</title>
<style>
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Arial,Helvetica,sans-serif;background:#f5f5f5;padding:20px}

h2{text-align:center;margin-bottom:15px}

.gallery{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:12px;
max-width:1000px;
margin:0 auto;
}
.gallery img{
width:100%;
height:100%;
object-fit:cover;
border-radius:8px;
box-shadow:0 2px 6px rgba(0,0,0,0.2);
}


@media(max-width:900px){
.gallery{
grid-template-columns:repeat(2,1fr);
grid-template-rows:auto auto auto;
}
}


@media(max-width:500px){
.gallery{
grid-template-columns:1fr;
grid-template-rows:auto;
}
}
</style>
</head>
<body>

<h2>Responsive Image Gallery (Rows + Columns)</h2>
<div class="gallery">
<img class="img1" src="https://picsum.photos/id/1011/600/400" alt="img1">
<img src="https://picsum.photos/id/1021/600/400" alt="img2">
<img src="https://picsum.photos/id/1031/600/400" alt="img3">
<img src="https://picsum.photos/id/1041/600/400" alt="img4">
<img src="https://picsum.photos/id/1051/600/400" alt="img5">
<img src="https://picsum.photos/id/1061/600/400" alt="img6">
</div>

</body>
</html>
4 changes: 4 additions & 0 deletions nepa.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<h1>
helooo

</h1>
1 change: 1 addition & 0 deletions sidd.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mehak patel
11 changes: 11 additions & 0 deletions styled.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
div{
color: blue;
display: flex;
flex-direction: column;
width: 200px;
word-spacing: 20px;
height: 100vh;
}
html{
background-color: rgba(72, 56, 56, 0.241);
}