Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b9a8082
web task done
ankita-104 Apr 15, 2022
1758d28
Merge branch 'EnigmaVSSUT:main' into main
ankita-104 Apr 27, 2022
02151c4
Create python task done
ankita-104 Apr 27, 2022
2d1bfe9
Add files via upload
ankita-104 Apr 27, 2022
38de621
Delete python.jpg
ankita-104 Apr 27, 2022
55bfe8a
Delete python task done
ankita-104 Apr 27, 2022
678b3b1
Create python task done
ankita-104 Apr 27, 2022
9ec2e24
Add files via upload
ankita-104 Apr 27, 2022
02c24ee
Delete python task done
ankita-104 Apr 27, 2022
61ea313
Delete python.jpg
ankita-104 Apr 27, 2022
eeb2fd9
Add files via upload
ankita-104 Apr 27, 2022
3aed9b0
Create python task done
ankita-104 Apr 27, 2022
deb1d88
Delete python task done
ankita-104 Apr 30, 2022
a98dd7c
Delete python.jpg
ankita-104 Apr 30, 2022
c674bce
Create python task done
ankita-104 Apr 30, 2022
c1605cd
Add files via upload
ankita-104 Apr 30, 2022
3618b61
Delete python task done
ankita-104 Apr 30, 2022
65248a2
Delete python.jpg
ankita-104 Apr 30, 2022
ca78148
Create python task done
ankita-104 Apr 30, 2022
ee1c984
python.jpg
ankita-104 Apr 30, 2022
6f4df87
Delete python task done
ankita-104 Apr 30, 2022
92abdba
Delete python.jpg
ankita-104 Apr 30, 2022
65eeb14
python.py
ankita-104 Apr 30, 2022
5525e52
python.png
ankita-104 Apr 30, 2022
663230c
Delete python task done
ankita-104 Apr 30, 2022
af5b260
Delete python.jpg
ankita-104 Apr 30, 2022
2219a0c
python.png
ankita-104 Apr 30, 2022
8e868e0
Python.py
ankita-104 Apr 30, 2022
f59ac91
Delete 99628311-6f50-4557-baa0-33187f802d12.jpg
ankita-104 Apr 30, 2022
fb222b2
Delete Python.py
ankita-104 Apr 30, 2022
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
95 changes: 95 additions & 0 deletions Web Development/task_1/Ankita/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:Arial, Helvetica, sans-serif;
}

.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin: 40px 20px 0 20px;
}

.container .heading{
width: 60%;
padding-bottom: 50px;
}
.container .heading h3{
font-size: 4em;
font-weight: bolder;
padding-bottom: 10px;
border-bottom: 3px solid rgb(152, 41, 41);
}

.container .heading h3 span{
font-weight: 100;
}
.container .box{
display: flex;
flex-direction: row;
justify-content: space-between;
}

.container .box .dream{
display: flex;
flex-direction: column;
width: 35%;
background: scroll;
}

.container .box .dream img{
width: 100%;
margin-bottom: 15px;
border-radius: 5px;
}

.container .btn{
margin: 40px 0 70px 0;
background: rgb(126, 16, 16);
padding: 15px 40px ;
border-radius: 8px;
}

.container .btn a{
color: rgb(55, 3, 25);
font-size: 1.2em;
text-decoration: none;
font-weight: bolder;
letter-spacing: 3px;
}

@media only screen and (max-width: 769px){
.container .box{
flex-direction: column;
}

.container .box .dream{
width: 100%;
}





}

@media only screen and (max-width: 643px){
.container .heading{
width: 100%;
}
.container .heading h3{
font-size: 1em;

}







}
47 changes: 47 additions & 0 deletions Web Development/task_1/Ankita/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>PHOTO-GALLERY</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="container">
<div class="heading">
<h3>Photo <span>collection</span></h3>
</div>
<div class="box">

<div class="dream">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,cartoons">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,trees">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,flowers">
<img src="https://source.unsplash.com/random/400x200/?wallpaper,birds">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,animals">

</div>

<div class="dream">
<img src="https://source.unsplash.com/random/400x200/?wallpaper,leaves">
<img src="https://source.unsplash.com/random/600x200/?wallpaper,house">
<img src="https://source.unsplash.com/random/500x200/?wallpaper,trees">
<img src="https://source.unsplash.com/random/400x200/?wallpaper,sun">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,animals">

</div>

<div class="dream">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,nature">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,flowers">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,landscape">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,river">
<img src="https://source.unsplash.com/random/300x200/?wallpaper,galaxy">

</div>





</div>
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.