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
18 changes: 18 additions & 0 deletions assignments/Akashyadav1234-hub/assignment-1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexbox</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="item item-1">Item-1</div>
<div class="container">
<div class="item item-2">Item-2</div>
<div class="container">
<div class="item item-3">Item-3</div>

</body>
</html>
50 changes: 50 additions & 0 deletions assignments/Akashyadav1234-hub/assignment-1/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f8f9fa;
animation: forwards;
}

.item-1 {
display: flex;
flex-direction: row;
gap: 10px;
border: 4px solid #ff0000;
padding: 20px;
animation: forwards;
}
.item-2 {
display: flex;
flex-direction: row;
gap: 10px;
border: 4px solid #4800ff;
padding: 20px;
animation: infinite;
}
.item-3 {
display: flex;
flex-direction: row;
gap: 50px;
border: 4px solid #ff0000;
padding: 20px;
animation: reverse;

}
.box {
background-color: #f66;
color: blue;
padding: 20px 30px;
border-radius: 10px;
font-weight: bold;
text-align: center;
animation: forwards;
}
.container{
justify-content: center;
border-radius: 20%;
animation: infinite;
display: flex;
}
11 changes: 0 additions & 11 deletions assignments/exampleuser/assignment1/index.html

This file was deleted.